Skip to content

Commit

Permalink
fix ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoldbaum committed Nov 26, 2024
1 parent f2c9fee commit 994a54e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_bcrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,8 @@ def create_user(id_, pw):
return id_, User(id_, pw)

creator_futures = [
user_creator.submit(create_user, id_, pw) for id_, pw in pws.items()]
user_creator.submit(create_user, id_, pw) for id_, pw in pws.items()
]

users = [future.result() for future in creator_futures]

Expand Down

0 comments on commit 994a54e

Please sign in to comment.