Skip to content

Commit

Permalink
Fixed __init__.py typo
Browse files Browse the repository at this point in the history
  • Loading branch information
harripd committed Jun 2, 2024
1 parent 9398eb3 commit 51435ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fretbursts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Antonino Ingargiola <tritemio@gmail.com>
#
from sys import version_info as python_version
if python_verion.major > 3 or python_version.minor > 7:
if python_version.major > 3 or python_version.minor > 7:
from importlib.metadata import version, PackageNotFoundError
else:
from importlib_metadata import version, PackageNotFoundError
Expand Down

0 comments on commit 51435ce

Please sign in to comment.