We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 439e136 commit d5482b1Copy full SHA for d5482b1
src/pyimcore.py
@@ -15,6 +15,8 @@ def __init__(self):
15
self.imp_loader = None
16
17
def find_module(self, name, path=None):
18
+ # From Python3.3, path of package is <class '_frozen_importlib._NamespacePath'>
19
+ path = None if path is None else list(path)
20
try:
21
self.mod_info = find_module(name, path)
22
self.imp_loader = True
0 commit comments