From 1eefe2c863b87fa19ab40046d96aa23863ff8077 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 31 Oct 2018 22:18:50 +0800 Subject: PEP8 fix --- fg21sim/webui/handlers/__init__.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'fg21sim/webui/handlers') diff --git a/fg21sim/webui/handlers/__init__.py b/fg21sim/webui/handlers/__init__.py index 1783b4b..6cc56bf 100644 --- a/fg21sim/webui/handlers/__init__.py +++ b/fg21sim/webui/handlers/__init__.py @@ -1,9 +1,12 @@ -# Copyright (c) 2016 Weitian LI +# Copyright (c) 2016,2018 Weitian LI # MIT license -from .index import IndexHandler -from .login import LoginHandler -from .configs import ConfigsAJAXHandler -from .console import ConsoleAJAXHandler -from .products import ProductsAJAXHandler, ProductsDownloadHandler -from .websocket import WSHandler +from .index import IndexHandler # noqa: F401 +from .login import LoginHandler # noqa: F401 +from .configs import ConfigsAJAXHandler # noqa: F401 +from .console import ConsoleAJAXHandler # noqa: F401 +from .products import ( # noqa: F401 + ProductsAJAXHandler, + ProductsDownloadHandler, +) +from .websocket import WSHandler # noqa: F401 -- cgit v1.2.2