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.
1 parent 062696e commit 8064d3fCopy full SHA for 8064d3f
1 file changed
find-project-root/src/find_project_root/__init__.py
@@ -1,3 +1,7 @@
1
+import sys
2
+
3
from .api import find_project_root
4
+from . import cli
5
-__all__ = ['find_project_root']
6
+sys.modules[__name__].cli = cli # type: ignore
7
+sys.modules[__name__] = find_project_root # type: ignore
0 commit comments