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.
2 parents ed6ce5b + 7803b7c commit 861d76bCopy full SHA for 861d76b
unblob/plugins.py
@@ -55,7 +55,7 @@ def import_path(self, path: Path):
55
if path.is_file():
56
module_name = path.stem
57
to_import = [(module_name, path)]
58
- elif path.is_dir:
+ elif path.is_dir():
59
to_import = [(p.parent.name, p) for p in path.glob("*/__init__.py")]
60
to_import.extend((p.stem, p) for p in path.glob("*.py"))
61
else:
0 commit comments