Skip to content

Commit 2d49435

Browse files
committed
rename settings for clarity
1 parent 947fe3a commit 2d49435

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/crt/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from crt.load_viewer.app import LoadViewer
1515
from crt.save_as.app import SaveAs
1616
from crt.session_history import SessionHistory
17-
from crt.app_settings.app import SettingsApp
17+
from crt.app_settings.app import Settings
1818

1919
class App:
2020
"""
@@ -29,7 +29,7 @@ def __init__(self):
2929

3030
self.past_file_paths = []
3131

32-
self.settings = SettingsApp()
32+
self.settings = Settings()
3333
self.settings_dict = self.settings.config_to_dict()
3434

3535
match self.settings_dict["theme"]:

src/crt/app_settings/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Settings for CRT.
33
"""
44

5-
from crt.app_settings.app import SettingsApp
5+
from crt.app_settings.app import Settings
66

77
__name__ = "crt.settings"
88
__author__ = "Conner Glover"
99
__description__ = "Settings for CRT."
10-
__all__ = ["SettingsApp"]
10+
__all__ = ["Settings"]

src/crt/app_settings/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from crt.language import Language
1010

11-
class SettingsApp:
11+
class Settings:
1212
def __init__(self):
1313
self.config = ConfigParser()
1414

0 commit comments

Comments
 (0)