diff --git a/atlasimagecomposer/compose.py b/atlasimagecomposer/compose.py index 4f715ae..3180466 100644 --- a/atlasimagecomposer/compose.py +++ b/atlasimagecomposer/compose.py @@ -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") diff --git a/pyproject.toml b/pyproject.toml index 5351c26..20aae16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",