Skip to content

Commit

Permalink
remove type hints from this branch
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Apr 3, 2024
1 parent 83d27a8 commit 7c3ed93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/bin/add_build_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def get_platform_name():
return sys.platform


def alnum(v: str | bytes) -> str:
def alnum(v):
return "".join(v for v in filter(str.isalnum, bytestostr(v)))


Expand Down

0 comments on commit 7c3ed93

Please sign in to comment.