Skip to content

Commit

Permalink
better handling of importlib_resources
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Mar 5, 2024
1 parent 14d4a49 commit ffa203e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resampy/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
import sys

# Try to import from the standard library first (Python >= 3.9)
if sys.version_info < (3, 9)
if sys.version_info < (3, 9):
from importlib import resources as importlib_resources
else:
# Fall back to the backport
Expand Down

0 comments on commit ffa203e

Please sign in to comment.