Bugfix
All checks were successful
/ pylint (push) Successful in 18s
/ mypy (push) Successful in 21s
/ build-artifacts (push) Successful in 9s
/ publish-artifacts (push) Successful in 9s
/ release (push) Successful in 7s
/ lint-and-typing (push) Successful in 24s

This commit is contained in:
Firq 2024-08-09 19:09:05 +02:00
parent e76df17735
commit 1aee3e0efd
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ def run():
servantid = input("Enter servant ID: ")
try:
t = int(servantid)
if t > 0:
if t <= 0:
raise ValueError
except ValueError:
print("Servant ID has to be a valid integer above 0")

View file

@ -1,6 +1,6 @@
[project]
name = "atlasimagecomposer"
version = "0.1.0-a.1"
version = "0.1.0-a.2"
dependencies = [
"numpy~=2.0.1",
"pillow~=10.4.0",