Skip to content

Commit ffa203e

Browse files
committed
better handling of importlib_resources
1 parent 14d4a49 commit ffa203e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resampy/filters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
import sys
5050

5151
# Try to import from the standard library first (Python >= 3.9)
52-
if sys.version_info < (3, 9)
52+
if sys.version_info < (3, 9):
5353
from importlib import resources as importlib_resources
5454
else:
5555
# Fall back to the backport

0 commit comments

Comments
 (0)