Skip to content

Commit

Permalink
Apply ruff/flake8-implicit-str-concat rule ISC001
Browse files Browse the repository at this point in the history
	ISC001 Implicitly concatenated string literals on one line

This rule is currently disabled because it conflicts with the formatter:
	astral-sh/ruff#8272
  • Loading branch information
DimitriPapadopoulos committed May 14, 2024
1 parent 19fb38f commit d97cd43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neurospin_to_bids/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ def yes_no(question: str, *, default=None, noninteractive=None) -> bool:
return valid[default]
if choice in valid:
return valid[choice]
print("Please respond with 'yes' or 'no' " "(or 'y' or 'n').\n")
print("Please respond with 'yes' or 'no' (or 'y' or 'n').\n")

0 comments on commit d97cd43

Please sign in to comment.