Skip to content

Commit

Permalink
[skip ci]: black/isort
Browse files Browse the repository at this point in the history
  • Loading branch information
black-isort-bot committed Jul 13, 2024
1 parent 406242d commit bf56759
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
if version:
v = v.group(1)

new_version = ".".join(
v.split(".")[:-1] + [str(int(v.split(".")[-1]) + 1)]
)
new_version = ".".join(v.split(".")[:-1] + [str(int(v.split(".")[-1]) + 1)])

with open("PyPDFForm/__init__.py", encoding="utf8") as f:
content = f.read().replace(version, new_version)
Expand Down

0 comments on commit bf56759

Please sign in to comment.