From d6fa090a564c96838aa1c375432ad8baed404a1e Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Sat, 14 Sep 2019 11:35:30 -0800 Subject: [PATCH] ignored flake8 warnings --- geeksbot/__main__.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/geeksbot/__main__.py b/geeksbot/__main__.py index 07dc3a6..4c5a9ff 100644 --- a/geeksbot/__main__.py +++ b/geeksbot/__main__.py @@ -30,34 +30,34 @@ logger.info('Starting Imports') start = datetime.utcnow() # noinspection PyPackageRequirements -import discord +import discord # noqa: E402 logger.info('Discord.py Imported') # noinspection PyPackageRequirements -from discord.ext import commands +from discord.ext import commands # noqa: E402 logger.info('commands Imported') # noinspection PyPackageRequirements -from discord.ext.commands.view import StringView +from discord.ext.commands.view import StringView # noqa: E402 logger.info('StringView Imported') # noinspection PyPackageRequirements -from discord.ext.commands.context import Context +from discord.ext.commands.context import Context # noqa: E402 logger.info('Context Imported') logger.info(f'Discord.py Import Complete - Took {(datetime.utcnow() - start).total_seconds()} seconds') # noinspection PyRedeclaration start = datetime.utcnow() -from concurrent import futures +from concurrent import futures # noqa: E402 logger.info('Concurrent futures Imported') -from multiprocessing import Pool +from multiprocessing import Pool # noqa: E402 logger.info('Multiprocesing Pool Imported') logger.info(f'Process Libs Import Complete - Took {(datetime.utcnow() - start).total_seconds()} seconds') # noinspection PyRedeclaration start = datetime.utcnow() -import re +import re # noqa: E402 logger.info('re Imported') -from typing import Dict +from typing import Dict # noqa: E402 logger.info('Typing Dict Imported') -import json +import json # noqa: E402 logger.info('JSON Imported') -import aiohttp +import aiohttp # noqa: E402 logger.info('aiohttp Imported') logger.info(f'Misc Libs Import Complete - Took {(datetime.utcnow() - start).total_seconds()} seconds') # noinspection PyRedeclaration