From f8a18f232309a59c7e713ff1bb2728b5009865f0 Mon Sep 17 00:00:00 2001 From: deajan Date: Thu, 9 Jan 2025 23:53:26 +0100 Subject: [PATCH] Reformat files with black --- npbackup/__version__.py | 4 ++-- npbackup/path_helper.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/npbackup/__version__.py b/npbackup/__version__.py index 18c6dd1..1c05dae 100644 --- a/npbackup/__version__.py +++ b/npbackup/__version__.py @@ -39,5 +39,5 @@ version_dict = { # Python 3.7 versions are considered legacy since they don't support msgspec -# Pytohn 3.9 has some issues with msgspec.struct (using a struct decoder will fail with "msgspec.ValidationError: Expected `LsNode`, got `dict`") -IS_LEGACY = True if sys.version_info[1] < 10 else False \ No newline at end of file +# Pytohn 3.9 has some issues with msgspec.struct (using a struct decoder will fail with "msgspec.ValidationError: Expected `LsNode`, got `dict`") +IS_LEGACY = True if sys.version_info[1] < 10 else False diff --git a/npbackup/path_helper.py b/npbackup/path_helper.py index 5f187b4..4d39f2c 100644 --- a/npbackup/path_helper.py +++ b/npbackup/path_helper.py @@ -23,4 +23,3 @@ CURRENT_EXECUTABLE = os.path.abspath(sys.argv[0]) CURRENT_DIR = os.path.dirname(CURRENT_EXECUTABLE) # When run with nuitka onefile, this will be the temp directory, else, this will be the path to current file BASEDIR = os.path.abspath(os.path.dirname(os.path.realpath(__file__))) -