Skip to content

Commit ce74ada

Browse files
committed
ruff: E501 Line too long fixes
E501 Line too long (100 > 88) --> scripts/generate_gitlab.py:64:89 | 62 | if result != "y": 63 | log.info( 64 | "Aborting per user request as existing config file (%s) should not be overwritten!", | ^^^^^^^^^^^^ 65 | config_filename, 66 | ) | E501 Line too long (89 > 88) --> src/vcspull/config.py:528:89 | 526 | elif existing_value[repo_name] != repo_config: 527 | conflict_message = ( 528 | f"Workspace root {label} contains conflicting definitions " | ^ 529 | "for repository {repo}. Keeping the existing entry." 530 | ) | Found 2 errors.
1 parent 0d25525 commit ce74ada

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

scripts/generate_gitlab.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@
6161

6262
if result != "y":
6363
log.info(
64-
"Aborting per user request as existing config file (%s) should not be overwritten!",
64+
"Aborting per user request as existing config file (%s) should not be "
65+
+ "overwritten!",
6566
config_filename,
6667
)
6768
sys.exit(0)

src/vcspull/config.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,9 @@ def normalize_workspace_roots(
525525
change_count += 1
526526
elif existing_value[repo_name] != repo_config:
527527
conflict_message = (
528-
f"Workspace root '{label}' contains conflicting definitions "
529-
"for repository '{repo}'. Keeping the existing entry."
528+
f"Workspace root '{label}' contains conflicting "
529+
"definitions for repository '{repo}'. Keeping the existing "
530+
"entry."
530531
)
531532
conflicts.append(
532533
conflict_message.format(

0 commit comments

Comments
 (0)