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

2
job.py
View File

@@ -10,6 +10,8 @@ import pytz
import socket import socket
from shared import PA_JOB_MANAGER_HOST, PA_JOB_MANAGER_PORT from shared import PA_JOB_MANAGER_HOST, PA_JOB_MANAGER_PORT
# pylint: disable=no-member
################################################################################ ################################################################################
# Class describing Job in the database, and via sqlalchemy, connected to the DB as well # Class describing Job in the database, and via sqlalchemy, connected to the DB as well
################################################################################ ################################################################################

View File

@@ -10,6 +10,8 @@ from shared import CreateSelect, DB_URL
import re import re
import socket import socket
# pylint: disable=no-member
####################################### Flask App globals ####################################### ####################################### Flask App globals #######################################
PROD_HOST="pa_web" PROD_HOST="pa_web"
hostname = socket.gethostname() hostname = socket.gethostname()
@@ -30,7 +32,7 @@ from files import Entry, GetJM_Message, ClearJM_Message
from person import Person from person import Person
from refimg import Refimg from refimg import Refimg
from job import Job, GetNumActiveJobs from job import Job, GetNumActiveJobs
from ai import * from ai import aistats
####################################### GLOBALS ####################################### ####################################### GLOBALS #######################################
# allow jinja2 to call these python functions directly # allow jinja2 to call these python functions directly
@@ -52,4 +54,4 @@ if __name__ == "__main__":
if hostname == PROD_HOST: 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) 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: else:
app.run(host="0.0.0.0", debug=True) app.run(host="0.0.0.0", debug=True)