Skip to content

Commit

Permalink
v4.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ppizarror committed Feb 15, 2023
1 parent c765408 commit 089297b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pygame_menu/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ def __str__(self) -> str:
patch = property(lambda self: self[2])


vernum = Version(4, 3, 6)
vernum = Version(4, 3, 7)
ver = str(vernum)
rev = ''
3 changes: 2 additions & 1 deletion pygame_menu/widgets/widget/progressbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ def __init__(
assert_vector(box_margin, 2, int)
assert_vector(progress_text_margin, 2, int)
assert isinstance(width, int)
assert width > 0, 'width must be greater than zero'
assert width > 0, \
'width must be greater than zero'
box_progress_padding = parse_padding(box_progress_padding)
self._box_progress_padding = box_progress_padding

Expand Down

0 comments on commit 089297b

Please sign in to comment.