From f5aa2c194a12838531ed45f901f453ba55d8ad13 Mon Sep 17 00:00:00 2001 From: miruka Date: Wed, 24 Jul 2019 20:02:31 -0400 Subject: [PATCH] "ui-settings.json", "ui-state.json": no ui- prefix --- src/python/config_files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python/config_files.py b/src/python/config_files.py index 21aa36ff..bc86a43e 100644 --- a/src/python/config_files.py +++ b/src/python/config_files.py @@ -98,7 +98,7 @@ class Accounts(JSONConfigFile): @dataclass class UISettings(JSONConfigFile): - filename: str = "ui-settings.json" + filename: str = "settings.json" async def default_data(self) -> JsonData: return { @@ -115,7 +115,7 @@ class UISettings(JSONConfigFile): @dataclass class UIState(JSONConfigFile): - filename: str = "ui-state.json" + filename: str = "state.json" @property def path(self) -> Path: