MCPcopy Create free account
hub / github.com/daniel2005d/mapXplore / __init__

Method __init__

lib/save_manager.py:12–19  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

10
11class SaveManager:
12 def __init__(self) -> None:
13 self._results = ResultSetting() #Settings.setting["Results"]
14 self._output = self._results.output
15
16 if self._output is None:
17 home = os.path.expanduser("~")
18 self._output = os.path.join(home,'.local','share','mapXplore')
19 self._results.output = self._output
20
21 def _create_directory(self, directory:str):
22 if not os.path.exists(directory):

Callers

nothing calls this directly

Calls 1

ResultSettingClass · 0.90

Tested by

no test coverage detected