Skip to content

Commit

Permalink
blacken version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jopohl committed Jan 14, 2024
1 parent 6dd5990 commit e0f94fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def release():

for line in fileinput.input(version_file, inplace=True):
if line.startswith("VERSION"):
line = 'VERSION = "{0}" \n'.format(cur_version)
line = 'VERSION = "{0}"\n'.format(cur_version)
print(line, end="")

# Publish new version number
Expand Down
2 changes: 1 addition & 1 deletion src/urh/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "2.9.6"
VERSION = "2.9.6"

if __name__ == "__main__":
# To read out version easy on command line for InnoSetup
Expand Down

0 comments on commit e0f94fa

Please sign in to comment.