Skip to content

Commit

Permalink
String literals are implicitly concatinated
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Nov 9, 2024
1 parent ed94f61 commit aad08db
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions rebench/denoise.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ def get_denoise(self):
if not self.has_denoise():
raise UIError(
"rebench-denoise not found. "
+ "Was ReBench installed so that `rebench` and `rebench-denoise` "
+ "are on the PATH? Python's bin directory for packages "
+ "may need to be added to PATH manually.\n\n"
+ "To use ReBench without rebench-denoise, use the --no-denoise option.\n",
"rebench-denoise not found. "
"Was ReBench installed so that `rebench` and `rebench-denoise` are on the PATH? "
"Python's bin directory for packages may need to be added to PATH manually.\n\n"
"To use ReBench without rebench-denoise, use the --no-denoise option.\n",
None,
)

Expand Down Expand Up @@ -402,12 +402,12 @@ def _shell_options():
help=(
"`minimize`|`restore`|`exec -- `|`kill pid`|`test`: "
"`minimize` sets system to reduce noise. "
+ "`restore` sets system to the assumed original settings. "
+ "`exec -- ` executes the given arguments. "
+ "`kill pid` send kill signal to the process with given id "
+ "and all child processes. "
+ "`test` executes a computation for 20 seconds in parallel. "
+ "it is only useful to test rebench-denoise itself."
"`restore` sets system to the assumed original settings. "
"`exec -- ` executes the given arguments. "
"`kill pid` send kill signal to the process with given id "
"and all child processes. "
"`test` executes a computation for 20 seconds in parallel. "
"it is only useful to test rebench-denoise itself."
),
default=None,
)
Expand Down

0 comments on commit aad08db

Please sign in to comment.