Skip to content

Commit

Permalink
Attempt to fix issue with importlib for different Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
prouast committed May 21, 2024
1 parent 5a337a7 commit 7262fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vitallens/ssd.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import sys
from typing import Tuple

if sys.version_info >= (3.9):
if sys.version_info >= (3, 9):
from importlib.resources import files
else:
from importlib_resources import files
Expand Down

0 comments on commit 7262fde

Please sign in to comment.