Skip to content

Commit 1933af2

Browse files
committed
fix codestyle
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent 1c4c56f commit 1933af2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

exec_helpers/async_api/api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,9 @@ async def check_stderr( # type: ignore
383383
if result.stderr:
384384
message = (
385385
"{append}Command {result.cmd!r} output contains STDERR while not expected\n"
386-
"\texit code: {result.exit_code!s}".format(append=error_info + "\n" if error_info else "", result=result)
386+
"\texit code: {result.exit_code!s}".format(
387+
append=error_info + "\n" if error_info else "", result=result
388+
)
387389
)
388390
self.logger.error(msg=message)
389391
if raise_on_err:

0 commit comments

Comments
 (0)