File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414from crt .load_viewer .app import LoadViewer
1515from crt .save_as .app import SaveAs
1616from crt .session_history import SessionHistory
17- from crt .app_settings .app import SettingsApp
17+ from crt .app_settings .app import Settings
1818
1919class 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" ]:
Original file line number Diff line number Diff line change 22Settings 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 " ]
Original file line number Diff line number Diff line change 88
99from crt .language import Language
1010
11- class SettingsApp :
11+ class Settings :
1212 def __init__ (self ):
1313 self .config = ConfigParser ()
1414
You can’t perform that action at this time.
0 commit comments