pull/317/head
jacesleeman 3 years ago
parent 035e9bda98
commit 5198145173

@ -29,9 +29,14 @@ for val in REQUIRED_VALUES:
configured = False
try:
float(os.getenv("OPACITY"))
float(os.getenv("TITLE_OPACITY"))
except:
print(f"Please ensure that OPACITY is set between 0 and 1 in your .env file")
print(f"Please ensure that TITLE_OPACITY is set between 0 and 1 in your .env file")
configured = False
try:
float(os.getenv("COMMENT_OPACITY"))
except:
print(f"Please ensure that COMMENT_OPACITY is set between 0 and 1 in your .env file")
configured = False
if configured:

Loading…
Cancel
Save