Applied auto pep 8 changes

This commit is contained in:
2024-01-21 22:06:06 +00:00
parent f227727c74
commit 44c1ee03ba
22 changed files with 156 additions and 100 deletions

7
app.py
View File

@@ -7,6 +7,8 @@ from controllers.web.endpoints import blueprint
Initialises any components that are needed at runtime such as the
Database manager...
'''
def main():
app = Flask(__name__)
@@ -19,9 +21,10 @@ def main():
else:
app.secret_key = secret_key
# Register a blueprint
# Register a blueprint
app.register_blueprint(blueprint)
app.run(debug=True, host="0.0.0.0")
if __name__ == "__main__":
main()