sorted
This commit is contained in:
parent
60dc1a3495
commit
40e80c90b0
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ def cd_browse_workspace():
|
||||||
absolute_path = os.path.join(directory, file)
|
absolute_path = os.path.join(directory, file)
|
||||||
relative_path = os.path.relpath(absolute_path, start=project.root)
|
relative_path = os.path.relpath(absolute_path, start=project.root)
|
||||||
paths.append(relative_path)
|
paths.append(relative_path)
|
||||||
for path in paths:
|
for path in sorted(paths):
|
||||||
print(path)
|
print(path)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue