Skip to content

Commit

Permalink
Fix spacing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed Aug 26, 2022
1 parent e4da3fc commit 7f3e760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dcargs/_argparse_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def _format_action(self, action):
action_header = (
" " * self._current_indent
+ action_header
+ " " * (action_width - monkeypatch_len(action_header))
+ " " * (action_width - monkeypatch_len(action_header) + 2)
)
# </new>
indent_first = 0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcargs"
version = "0.2.4"
version = "0.2.5"
description = "Strongly typed, zero-effort CLI interfaces"
authors = ["brentyi <[email protected]>"]
include = ["./dcargs/**/*"]
Expand Down

0 comments on commit 7f3e760

Please sign in to comment.