diff options
author | 2018-10-10 09:13:57 -0500 | |
---|---|---|
committer | 2018-10-10 09:13:57 -0500 | |
commit | 2e85819a1f155c0e098e8928a879b39d07e65048 (patch) | |
tree | 01cf9d4e1753b6145bc08d1dbcdd599fb7bc06eb | |
parent | Travis only has dev builds of 3.7 (diff) |
Corrected linting errors.
-rw-r--r-- | bot/__init__.py | 5 | ||||
-rw-r--r-- | bot/__main__.py | 9 | ||||
-rw-r--r-- | bot/cogs/hacktoberstats.py | 4 | ||||
-rw-r--r-- | bot/cogs/halloweenify.py | 2 | ||||
-rw-r--r-- | bot/cogs/movie.py | 8 |
5 files changed, 16 insertions, 12 deletions
diff --git a/bot/__init__.py b/bot/__init__.py index 8cbcd121..1d320245 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -1,5 +1,6 @@ -import os import logging.handlers +import os + # set up logging @@ -27,4 +28,4 @@ logging.basicConfig(format='%(asctime)s - %(name)s %(levelname)s: %(message)s', level=logging.DEBUG, handlers=[console_handler, file_handler]) -logging.info('Logging Process Started')
\ No newline at end of file +logging.info('Logging Process Started') diff --git a/bot/__main__.py b/bot/__main__.py index a40ed0d4..c40836c5 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -1,10 +1,10 @@ +import logging from os import environ from pathlib import Path -from sys import stderr -from traceback import print_exc, format_exc +from traceback import format_exc from discord.ext import commands -import logging + HACKTOBERBOT_TOKEN = environ.get('HACKTOBERBOT_TOKEN') @@ -19,7 +19,6 @@ bot = commands.Bot(command_prefix=commands.when_mentioned_or(".", f"{ghost_unico logging.info('Start loading extensions from ./cogs/') - if __name__ == '__main__': # Scan for files in the /cogs/ directory and make a list of the file names. cogs = [file.stem for file in Path('cogs').glob('*.py')] @@ -36,4 +35,4 @@ logging.info(f'Spooky Launch Sequence Initiated...') bot.run(HACKTOBERBOT_TOKEN) -logging.info(f'HackBot has been slain!')
\ No newline at end of file +logging.info(f'HackBot has been slain!') diff --git a/bot/cogs/hacktoberstats.py b/bot/cogs/hacktoberstats.py index 4e896ae9..0a280443 100644 --- a/bot/cogs/hacktoberstats.py +++ b/bot/cogs/hacktoberstats.py @@ -95,7 +95,9 @@ class Stats: is_query = f"public+author:{username}" date_range = "2018-10-01..2018-10-31" per_page = "300" - query_url = f"{base_url}-label:{not_label}+type:{action_type}+is:{is_query}+created:{date_range}&per_page={per_page}" + query_url = ( + f"{base_url}-label:{not_label}+type:{action_type}+is:{is_query}+created:{date_range}&per_page={per_page}" + ) headers = {"user-agent": "Discord Python Hactoberbot"} async with aiohttp.ClientSession() as session: diff --git a/bot/cogs/halloweenify.py b/bot/cogs/halloweenify.py index 8a9db3df..201f6b95 100644 --- a/bot/cogs/halloweenify.py +++ b/bot/cogs/halloweenify.py @@ -1,5 +1,5 @@ -from pathlib import Path from json import load +from pathlib import Path from random import choice diff --git a/bot/cogs/movie.py b/bot/cogs/movie.py index bb6f8df8..647ee22a 100644 --- a/bot/cogs/movie.py +++ b/bot/cogs/movie.py @@ -1,8 +1,10 @@ -import requests import random from os import environ -from discord.ext import commands + +import requests from discord import Embed +from discord.ext import commands + TMDB_API_KEY = environ.get('TMDB_API_KEY') TMDB_TOKEN = environ.get('TMDB_TOKEN') @@ -72,7 +74,7 @@ class Movie: rating_count = movie.get('vote_average') / 2 rating = '' - for i in range(int(rating_count)): + for _ in range(int(rating_count)): rating += ':skull:' if (rating_count % 1) >= .5: |