From 677304ba3ecbd204fa2726e6820de84ad09bd868 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 10 Mar 2020 10:34:00 +0100 Subject: Added a tiny portion of black magic. --- runserver.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runserver.py') diff --git a/runserver.py b/runserver.py index 20c712a4..6844aa85 100755 --- a/runserver.py +++ b/runserver.py @@ -62,7 +62,7 @@ with application.app_context(): if __name__ == "__main__": application.run( - host=application.config['HOST'], - port=application.config['PORT'], - debug=application.config['DEBUG'] + host=application.config["HOST"], + port=application.config["PORT"], + debug=application.config["DEBUG"], ) -- cgit