Skip to content

Commit 6683bcf

Browse files
committed
IMPROVEMENT: pylint setup.py for a long line
1 parent 65f0e5c commit 6683bcf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
except FileExistsError:
6868
print(f"The destination directory '{TEMPLATES_DST_DIR}' already exists and cannot be overwritten.")
6969
except PermissionError:
70-
print(f"Permission denied when trying to copy '{TEMPLATES_SRC_DIR}' to '{TEMPLATES_DST_DIR}'. Please check your permissions.")
70+
print(f"Permission denied when trying to copy '{TEMPLATES_SRC_DIR}' to '{TEMPLATES_DST_DIR}'. " \
71+
"Please check your permissions.")
7172
except Exception as e: # pylint: disable=broad-except
7273
print(f"An unexpected error occurred while copying the directory tree: {e}")
7374

0 commit comments

Comments
 (0)