Skip to content

Commit b96a87c

Browse files
committed
Fix syntax error in use of random.choices
1 parent ca5b2a3 commit b96a87c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_manifester.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
{
8080
"uuid": SUB_ALLOCATION_UUID,
8181
"name": f"{MANIFEST_DATA['username_prefix']}-"
82-
+ "".join(random.choices(string.ascii_letters, 8)),
82+
+ "".join(random.choices(string.ascii_letters, k=8)),
8383
"type": "Satellite",
8484
"version": f"{MANIFEST_DATA['sat_version']}",
8585
"entitlementQuantity": sum(d["quantity"] for d in MANIFEST_DATA["subscription_data"]),

0 commit comments

Comments
 (0)