From 2e85819a1f155c0e098e8928a879b39d07e65048 Mon Sep 17 00:00:00 2001 From: Daniel Brown Date: Wed, 10 Oct 2018 09:13:57 -0500 Subject: Corrected linting errors. --- bot/cogs/hacktoberstats.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bot/cogs/hacktoberstats.py') 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: -- cgit v1.2.3