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 fc8e631 commit 3251d98Copy full SHA for 3251d98
1 file changed
find-project-root/src/find_project_root/api.py
@@ -13,7 +13,7 @@ def find_project_root(
13
current_dir = os.getcwd() if path is None else str(path)
14
if not os.path.exists(current_dir):
15
raise ValueError(f'Path does not exist: {os.path.abspath(current_dir)}')
16
- if not markers: markers = project_markers # type: ignore
+ if not markers : markers = project_markers # type: ignore
17
for _ in range(max_depth):
18
try : dir_files = os.listdir(current_dir)
19
except (OSError, IOError, PermissionError):
0 commit comments