From 6c3ea7c5f92631412fe46d0b2d0350cf019386d8 Mon Sep 17 00:00:00 2001 From: creslinux Date: Sat, 23 Jun 2018 09:22:25 +0000 Subject: [PATCH] flake 8 fix --- freqtrade/rpc/api_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/rpc/api_server.py b/freqtrade/rpc/api_server.py index 7c8d33231..3b51126a9 100644 --- a/freqtrade/rpc/api_server.py +++ b/freqtrade/rpc/api_server.py @@ -35,7 +35,7 @@ class ApiServerSuperWrap(RPC): thread.start() def register_rest_other(self): - #Added as a placeholder for app URLs that are not implemented in rpc.rpc + # Added as a placeholder for app URLs that are not implemented in rpc.rpc app.register_error_handler(404, self.page_not_found) app.add_url_rule('/', 'hello', view_func=self.hello, methods=['GET'])