From 7256cfca3af4c1dd3432726c53940191428e176e Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Sun, 3 Mar 2019 19:24:05 +0100 Subject: [PATCH] fix pylint in server and client (imports) # pylint: disable=wrong-import-position # pylint: disable=wrong-import-order --- bw_client.py | 1 + bw_server.py | 1 + 2 files changed, 2 insertions(+) diff --git a/bw_client.py b/bw_client.py index 9f0cf10..83d7b38 100644 --- a/bw_client.py +++ b/bw_client.py @@ -15,6 +15,7 @@ @description: BOSWatch client application """ # pylint: disable=wrong-import-position +# pylint: disable=wrong-import-order from boswatch.utils import paths if not paths.makeDirIfNotExist(paths.LOG_PATH): diff --git a/bw_server.py b/bw_server.py index 2e6800c..57f4db1 100644 --- a/bw_server.py +++ b/bw_server.py @@ -15,6 +15,7 @@ @description: BOSWatch server application """ # pylint: disable=wrong-import-position +# pylint: disable=wrong-import-order from boswatch.utils import paths if not paths.makeDirIfNotExist(paths.LOG_PATH):