Skip to content

Commit

Permalink
Format with yapf
Browse files Browse the repository at this point in the history
  • Loading branch information
olzhasar-reef committed May 8, 2024
1 parent 0cee10a commit 3154fb7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion b2/_internal/arg_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ def add_argument(self, action):
if self.show_all:
usages.append(f'(DEPRECATED) {choice.format_usage()}')
else:
usages.append(choice.format_usage(use_short_description=not self.show_all, col_length=col_length))
usages.append(
choice.format_usage(
use_short_description=not self.show_all, col_length=col_length
)
)
self.add_text(''.join(usages))
else:
super().add_argument(action)
Expand Down

0 comments on commit 3154fb7

Please sign in to comment.