Skip to content

Commit e9e4c6f

Browse files
fix lint
1 parent 33a6019 commit e9e4c6f

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

linodecli/api_request.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,8 @@ def _build_request_body(
378378
if ctx.raw_body is not None:
379379
if len(body_args) > 0:
380380
print(
381-
"--raw-body cannot be specified with action arguments: {}".format(
382-
", ".join(sorted(f"--{key}" for key, _ in body_args)),
383-
),
381+
"--raw-body cannot be specified with action arguments: "
382+
+ ", ".join(sorted(f"--{key}" for key, _ in body_args)),
384383
file=sys.stderr,
385384
)
386385
sys.exit(ExitCodes.ARGUMENT_ERROR)

0 commit comments

Comments
 (0)