Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinpape committed Jan 1, 2025
1 parent cf0661f commit b8e443f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elf/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Ellipsis as type annontation is only supported for python >= 3.11.
# To support earlier version we use Literal[...] as type annotation, according to ChatGPT that should work.
if sys.version_info.minor < 11:
if sys.version_info.minor >= 11:
EllipsisType = Ellipsis
else:
EllipsisType = Literal[...]
Expand Down

0 comments on commit b8e443f

Please sign in to comment.