Skip to content

Commit

Permalink
Fix error on using new get_existing_project_paths() after rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Nov 14, 2023
1 parent 27bb3b9 commit ce6c6c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datashuttle/tui/screens/project_selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ class ProjectSelectorScreen(Screen):
def __init__(self, mainwindow):
super(ProjectSelectorScreen, self).__init__()

self.project_names = get_existing_project_paths()
self.project_names = [
path_.stem for path_ in get_existing_project_paths()
]
self.mainwindow = mainwindow

def compose(self):
Expand Down

0 comments on commit ce6c6c7

Please sign in to comment.