From c1b0ad73ca9379cc288077cefdaa29b29c91a1ee Mon Sep 17 00:00:00 2001 From: PeninsulaInd Date: Wed, 11 Mar 2026 16:31:16 -0500 Subject: [PATCH] Fix job file creation: use t1_count for t2_count to avoid NoneType * int Made-with: Cursor --- src/cli/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/commands.py b/src/cli/commands.py index c9e98b6..1019e33 100644 --- a/src/cli/commands.py +++ b/src/cli/commands.py @@ -115,7 +115,7 @@ def create_job_file_for_project( return None t1_count = tier1_count if tier1_count is not None else random.randint(10, 12) - t2_count = (tier1_count * 2) + random.randint(1, 12) + t2_count = (t1_count * 2) + random.randint(1, 12) if random_deployment_targets is not None: num_targets = min(random_deployment_targets, len(available_domains)) else: