mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-05 09:21:13 +08:00
Fix ruff rules ISC flake8-implicit-str-concat (#8892)
This commit is contained in:
@ -150,7 +150,7 @@ def reverse_bwt(bwt_string: str, idx_original_string: int) -> str:
|
||||
raise ValueError("The parameter idx_original_string must not be lower than 0.")
|
||||
if idx_original_string >= len(bwt_string):
|
||||
raise ValueError(
|
||||
"The parameter idx_original_string must be lower than" " len(bwt_string)."
|
||||
"The parameter idx_original_string must be lower than len(bwt_string)."
|
||||
)
|
||||
|
||||
ordered_rotations = [""] * len(bwt_string)
|
||||
|
Reference in New Issue
Block a user