Skip to content

Commit 48afdf6

Browse files
committed
clean up variable names
1 parent 9512c7a commit 48afdf6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -580,10 +580,10 @@ def create_aws_lambda_variants():
580580

581581
def create_server_version_tasks():
582582
tasks = []
583-
variants = [(p, "sharded_cluster") for p in ALL_PYTHONS]
583+
task_types = [(p, "sharded_cluster") for p in ALL_PYTHONS]
584584
for python, topology in zip_cycle(ALL_PYTHONS, ["standalone", "replica_set"]):
585-
variants.append((python, topology))
586-
for python, topology in variants:
585+
task_types.append((python, topology))
586+
for python, topology in task_types:
587587
tags = ["server-version"]
588588
if topology == "standalone":
589589
auth = "noauth"

0 commit comments

Comments
 (0)