From 2b10daca34b7db53a0417e3bf247b08bf8a5536f Mon Sep 17 00:00:00 2001 From: A5rocks <40616000+A5rocks@users.noreply.github.com> Date: Sat, 2 Nov 2019 23:53:14 +0900 Subject: [PATCH] Fix flake8's innate hate of monkey patching. --- disco/util/runner.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/disco/util/runner.py b/disco/util/runner.py index e74cd90..665eab1 100644 --- a/disco/util/runner.py +++ b/disco/util/runner.py @@ -5,9 +5,9 @@ monkey.patch_all() # imports from disco (if moved to the top, they will probably break # due to requiring `gevent`'s monkey patching for asynchronous) -from disco.client import Client, ClientConfig -from disco.bot import Bot, BotConfig -from disco.util.logging import setup_logging +from disco.client import Client, ClientConfig # noqa: E402 +from disco.bot import Bot, BotConfig # noqa: E402 +from disco.util.logging import setup_logging # noqa: E402 def bot_creator(config: dict = {}, bot: bool = True, autosharded: bool = False, **kwargs): @@ -55,6 +55,3 @@ def bot_creator(config: dict = {}, bot: bool = True, autosharded: bool = False, return Bot(client, bot_config) else: return client - - -