Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Commit 46094f4

Browse files
committed
Make .. the first thing in the menu
1 parent bff83f3 commit 46094f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ async def file_select():
1818
def populate_folder(folder):
1919
nonlocal dir
2020
dir = manager.dir
21-
for i in os.listdir(folder):
21+
for i in ['..'] + os.listdir(folder):
2222
if (dir / i).is_file():
2323

2424
async def cb():

0 commit comments

Comments
 (0)