Use black for formatting

This commit is contained in:
richard-dds
2018-06-26 10:31:39 -04:00
parent 3599440ee6
commit f9335c7a4e
28 changed files with 362 additions and 255 deletions

4
app.py
View File

@@ -8,8 +8,8 @@ config = make_config()
deps = make_deps(config)
app = make_app(config, deps)
if __name__ == '__main__':
port = int(config['default']['PORT'])
if __name__ == "__main__":
port = int(config["default"]["PORT"])
app.listen(port)
print("Listening on http://localhost:%i" % port)
tornado.ioloop.IOLoop.current().start()