From: Christian Heller Date: Wed, 24 Sep 2025 08:34:05 +0000 (+0200) Subject: Use Path.joinpath smarter. X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=44b577a17800499f54943fa01e095e515f79fac0;p=ircplom Use Path.joinpath smarter. --- diff --git a/ircplom/client_tui.py b/ircplom/client_tui.py index 400c294..dbdd498 100644 --- a/ircplom/client_tui.py +++ b/ircplom/client_tui.py @@ -25,8 +25,7 @@ _LOG_PREFIX_SERVER = '$' _LOG_PREFIX_OUT = '>' _LOG_PREFIX_IN = '<' -_PATH_LOGS = Path.home().joinpath('.local').joinpath('share')\ - .joinpath('ircplom').joinpath('logs') +_PATH_LOGS = Path.home().joinpath('.local', 'share', 'ircplom', 'logs') class _LogScope(Enum):