Skip to content

Commit

Permalink
black format
Browse files Browse the repository at this point in the history
  • Loading branch information
Torgayev Tamirlan committed Mar 9, 2020
1 parent 363cfc8 commit 3be1272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amazon_kinesis_utils/kinesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def create_record(data: str) -> dict:

data_blob = data.encode("utf-8")
partition_key: str = "".join(
random.choices(random_alphanumerical, k=20)
random.choices(random_alphanumerical, k=20)
) # max 256 chars
return {"Data": data_blob, "PartitionKey": partition_key}

Expand Down

0 comments on commit 3be1272

Please sign in to comment.