Applied auto pep 8 changes
This commit is contained in:
7
app.py
7
app.py
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user