Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and klieret committed Apr 26, 2022
1 parent 3ac4e31 commit c3fd923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ankipandas/util/guid.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _base91(num):

def _guid64():
"""Return a base91-encoded 64bit random number."""
return _base91(random.randint(0, 2 ** 64 - 1))
return _base91(random.randint(0, 2**64 - 1))


def guid():
Expand Down

0 comments on commit c3fd923

Please sign in to comment.