Fixed all pep8 warnings

This commit is contained in:
2024-01-21 22:22:29 +00:00
parent 44c1ee03ba
commit bca3b0a663
14 changed files with 64 additions and 43 deletions

2
app.py
View File

@@ -14,7 +14,7 @@ def main():
# Set app secret key to sign session cookies
secret_key = environ.get("APPSECRET")
if secret_key == None:
if secret_key is None:
# NO Secret Key set!
print("No app secret set, please set one before deploying in production")
app.secret_key = "DEFAULTKEY"