From 40e80c90b0e141afb4518449f37d6df8d2d242af Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Thu, 30 May 2024 00:49:23 +0200 Subject: [PATCH] sorted --- cd/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cd/__init__.py b/cd/__init__.py index e045397..cb95ebf 100644 --- a/cd/__init__.py +++ b/cd/__init__.py @@ -21,7 +21,7 @@ def cd_browse_workspace(): absolute_path = os.path.join(directory, file) relative_path = os.path.relpath(absolute_path, start=project.root) paths.append(relative_path) - for path in paths: + for path in sorted(paths): print(path)