Bugfix
All checks were successful
All checks were successful
This commit is contained in:
parent
e76df17735
commit
1aee3e0efd
2 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue