8 lines
183 B
Python
8 lines
183 B
Python
|
def check(cmd, mf):
|
||
|
m = mf.findNode('importlib')
|
||
|
if m:
|
||
|
return dict(expected_missing_imports=set(
|
||
|
['_frozen_importlib_external']))
|
||
|
|
||
|
return None
|