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 3ecfcb7 commit b55f1ceCopy full SHA for b55f1ce
tools/eclipse.py
@@ -55,12 +55,6 @@ def ParentPaths(path):
55
path = path.replace('\\', '/')
56
all_paths = all_paths + [path] + ParentPaths(path)
57
58
- cwd = os.getcwd()
59
- for path in os.listdir(cwd):
60
- temp_path = cwd.replace('\\', '/') + '/' + path
61
- if os.path.isdir(temp_path):
62
- all_paths = all_paths + [temp_path]
63
-
64
all_paths = list(set(all_paths))
65
return sorted(all_paths)
66
0 commit comments