mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
fix: herp derp
This commit is contained in:
parent
d7eb667bc6
commit
1dca79d3e3
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ def next_id(prev_id: str) -> str:
|
|||
_maybe_next_id_val = int(_prev_id_val) + 1
|
||||
_maybe_next_id_str = f"{_maybe_next_id_val:0{num_digits}}"
|
||||
|
||||
_is_padding_ok = prev_id[0] != _maybe_next_id_str[0]
|
||||
_is_padding_ok = prev_id[0] == _maybe_next_id_str[0]
|
||||
_next_id_str: str
|
||||
|
||||
if _is_padding_ok:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue