Skip to content

Commit 3251d98

Browse files
committed
Added space
1 parent fc8e631 commit 3251d98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • find-project-root/src/find_project_root

find-project-root/src/find_project_root/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def find_project_root(
1313
current_dir = os.getcwd() if path is None else str(path)
1414
if not os.path.exists(current_dir):
1515
raise ValueError(f'Path does not exist: {os.path.abspath(current_dir)}')
16-
if not markers: markers = project_markers # type: ignore
16+
if not markers : markers = project_markers # type: ignore
1717
for _ in range(max_depth):
1818
try : dir_files = os.listdir(current_dir)
1919
except (OSError, IOError, PermissionError):

0 commit comments

Comments
 (0)