bug fix, input change on resolution type from int to float

This commit is contained in:
Beale John Henry
2023-10-05 09:43:06 +02:00
parent ce1e46611d
commit e81a9960a0
2 changed files with 2 additions and 2 deletions

View File

@@ -301,7 +301,7 @@ if __name__ == "__main__":
"-r",
"--resolution",
help="high res limit - need something here. Default set to 1.3",
type=int,
type=float,
default=1.3
)
args = parser.parse_args()

View File

@@ -416,7 +416,7 @@ if __name__ == "__main__":
"-r",
"--resolution",
help="high res limit - need something here. Default set to 1.3",
type=int,
type=float,
default=1.3
)
args = parser.parse_args()