Make sure check interval is int
This commit is contained in:
parent
d34dd5c8ed
commit
af46173b4f
@ -27,6 +27,9 @@ if os.path.exists(".env"):
|
|||||||
if os.environ.get(key) is None:
|
if os.environ.get(key) is None:
|
||||||
os.environ[key] = value.strip()
|
os.environ[key] = value.strip()
|
||||||
|
|
||||||
|
# Convert CHECK_INTERVAL to int
|
||||||
|
CHECK_INTERVAL = int(CHECK_INTERVAL)
|
||||||
|
|
||||||
# Docs: https://app.swaggerhub.com/apis-docs/NexusMods/nexus-mods_public_api_params_in_form_data/1.0
|
# Docs: https://app.swaggerhub.com/apis-docs/NexusMods/nexus-mods_public_api_params_in_form_data/1.0
|
||||||
|
|
||||||
xEdits = {
|
xEdits = {
|
||||||
|
Loading…
Reference in New Issue
Block a user