File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
importlib_resources/tests Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
try :
2
- from test .support import import_helper
2
+ from test .support import import_helper # type: ignore
3
3
except ImportError :
4
4
try :
5
5
# Python 3.9 and earlier
6
- class import_helper :
6
+ class import_helper : # type: ignore
7
7
from test .support import modules_setup , modules_cleanup
8
8
except ImportError :
9
9
from . import py27compat
10
10
11
- class import_helper :
11
+ class import_helper : # type: ignore
12
12
modules_setup = staticmethod (py27compat .modules_setup )
13
13
modules_cleanup = staticmethod (py27compat .modules_cleanup )
14
14
15
15
16
16
try :
17
- from os import fspath
17
+ from os import fspath # type: ignore
18
18
except ImportError :
19
19
# Python 3.5
20
- fspath = str
20
+ fspath = str # type: ignore
21
21
22
22
23
23
try :
You can’t perform that action at this time.
0 commit comments