mirror of
https://github.com/EDCD/EDMarketConnector.git
synced 2025-04-19 02:17:38 +03:00
Removed uneeded str() calls
This commit is contained in:
parent
051245cf90
commit
3ac956dcec
@ -350,7 +350,7 @@ class WinConfig(AbstractConfig):
|
||||
self.identifier = applongname
|
||||
if (outdir_str := self.get_str('outdir')) is None or not pathlib.Path(outdir_str).is_dir():
|
||||
docs = known_folder_path(FOLDERID_Documents)
|
||||
self.set('outdir', docs if docs is not None else str(self.home_path))
|
||||
self.set('outdir', docs if docs is not None else self.home)
|
||||
|
||||
def __setup_winsparkle(self):
|
||||
create_key_defaults = functools.partial(
|
||||
@ -711,7 +711,7 @@ class LinuxConfig(AbstractConfig):
|
||||
self.config.add_section(self.SECTION)
|
||||
|
||||
if (outdir := self.get_str('outdir')) is None or not pathlib.Path(outdir).is_dir():
|
||||
self.set('outdir', str(self.home_path))
|
||||
self.set('outdir', self.home)
|
||||
|
||||
def __escape(self, s: str) -> str:
|
||||
"""
|
||||
|
Loading…
x
Reference in New Issue
Block a user