File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 36
36
ImportErr = None
37
37
del ImportErr
38
38
raise ImportError (str ("Test module failed completely." ))
39
- from tests import context as context
39
+ from tests import context as context # skipcq: PYL-C0414
40
40
if context .__name__ is None :
41
41
raise ImportError (str ("Test module failed to import even the context framework." ))
42
- from tests import profiling as profiling
42
+ from tests import profiling as profiling # skipcq: PYL-C0414
43
43
if profiling .__name__ is None :
44
44
raise ImportError (str ("Test module failed to import even the profiling framework." ))
45
45
from tests import test_basic
Original file line number Diff line number Diff line change 35
35
36
36
37
37
try :
38
- import pythonrepo as pythonrepo
38
+ import pythonrepo as pythonrepo # skipcq: PYL-C0414
39
39
if pythonrepo .__name__ is None :
40
40
raise ImportError ("Failed to import pythonrepo." )
41
41
except Exception as badErr :
You can’t perform that action at this time.
0 commit comments