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 5b48ff9 commit 98b9f21Copy full SHA for 98b9f21
rootpath/append.py
@@ -44,6 +44,11 @@ def append(current_path = None, pattern = None):
44
"""
45
project_root_path = rootpath.detect(current_path, pattern)
46
47
+ # if the returned value is None it should not be added
48
+
49
+ if project_root_path is None:
50
+ return False, project_root_path
51
52
try:
53
if project_root_path != current_path:
54
0 commit comments