From 00b4d82c4e9b163814e2ac9f6dd69be25643e950 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Mon, 10 Jul 2017 00:39:03 -0500 Subject: [PATCH] Pep8 --- cogs/stats.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/stats.py b/cogs/stats.py index 0ff5052..cb9b841 100644 --- a/cogs/stats.py +++ b/cogs/stats.py @@ -42,7 +42,8 @@ class Stats: continue # This check checks the user's connected campaign (should only exist for *our* user) and checks if it # matches - if include.get('relationshipos', {}).get('campaign', {}).get('data', {}).get('id', {}) == str(utils.patreon_id): + if include.get('relationshipos', {}).get('campaign', {}).get('data', {}).get('id', {}) == str( + utils.patreon_id): continue # Otherwise the only way this user was included, was if they are a patron, so include them @@ -59,7 +60,6 @@ class Stats: # Now just set the names self.donators = names - @commands.command() @commands.guild_only() @utils.custom_perms(send_messages=True)