fixed up a few issues found from linter

This commit is contained in:
2021-03-19 18:00:44 +11:00
parent 6fd0205b71
commit c2d0004537
2 changed files with 6 additions and 2 deletions

View File

@@ -10,6 +10,8 @@ from shared import CreateSelect, DB_URL
import re
import socket
# pylint: disable=no-member
####################################### Flask App globals #######################################
PROD_HOST="pa_web"
hostname = socket.gethostname()
@@ -30,7 +32,7 @@ from files import Entry, GetJM_Message, ClearJM_Message
from person import Person
from refimg import Refimg
from job import Job, GetNumActiveJobs
from ai import *
from ai import aistats
####################################### GLOBALS #######################################
# allow jinja2 to call these python functions directly
@@ -52,4 +54,4 @@ if __name__ == "__main__":
if hostname == PROD_HOST:
app.run(ssl_context=('/etc/letsencrypt/live/book.depaoli.id.au/cert.pem', '/etc/letsencrypt/live/book.depaoli.id.au/privkey.pem'), host="0.0.0.0", debug=False)
else:
app.run(host="0.0.0.0", debug=True)
app.run(host="0.0.0.0", debug=True)