Skip to content

Commit 5d69288

Browse files
committed
Fixed incorrect path resolution for repository-local settings files
1 parent 6cf6c7b commit 5d69288

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/finn/interface/interface_globals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _resolve_settings_path() -> Path | None:
2525
error(f"Settings path specified via FINN_SETTINGS, but settings could not be found at {p}!")
2626
return None
2727
paths = [
28-
Path(__file__).parent.parent / "settings.yaml",
28+
Path(__file__).parent.parent.parent.parent / "settings.yaml",
2929
Path.home() / ".finn" / "settings.yaml",
3030
Path.home() / ".config" / "settings.yaml",
3131
]

0 commit comments

Comments
 (0)