misc: small fix or general refactoring i did not bother commenting

This commit is contained in:
Simone Margaritelli 2019-11-05 14:57:22 +01:00
parent de71d18a72
commit 60d9fd46ae
No known key found for this signature in database
GPG Key ID: 82E42E7F3B34C97E

@ -36,7 +36,7 @@ class Server:
CORS(app, resources={r"*": {"origins": self._origin}})
CSRFProtect(app)
Handler(agent, app)
Handler(self._agent, app)
app.run(host=self._address, port=self._port, debug=False)
else: