We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent beee84d commit 2e31398Copy full SHA for 2e31398
iso639/datafile.py
@@ -2,10 +2,10 @@
2
from typing import Any
3
4
try:
5
- from importlib.resources import files
+ from importlib.resources import files # type: ignore[attr-defined, import-not-found]
6
except ImportError:
7
# Compatibility for Python <3.9
8
- from importlib_resources import files
+ from importlib_resources import files # type: ignore[no-redef, import-not-found]
9
10
11
FILENAMES = {
0 commit comments