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 5751ed2 commit 45e0cd1Copy full SHA for 45e0cd1
src/murfey/client/tui/screens.py
@@ -717,7 +717,11 @@ def on_button_pressed(self, event: Button.Pressed):
717
if self._switch_status:
718
self.app.install_screen(
719
DirectorySelection(
720
- [p for p in machine_data.get("data_directories", []) if p.exists()]
+ [
721
+ p
722
+ for p in machine_data.get("data_directories", [])
723
+ if Path(p).exists()
724
+ ]
725
),
726
"directory-select",
727
)
0 commit comments