From 0297481a5ee1813a915de18f6eb2e64226b49372 Mon Sep 17 00:00:00 2001 From: Jeremy Zhang Date: Sun, 7 Jan 2018 01:23:43 +0000 Subject: [PATCH] Remove unused import and variable in poststats --- discordbot/titanembeds/poststats.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/discordbot/titanembeds/poststats.py b/discordbot/titanembeds/poststats.py index e19c7d9..00fe44b 100644 --- a/discordbot/titanembeds/poststats.py +++ b/discordbot/titanembeds/poststats.py @@ -1,5 +1,4 @@ import aiohttp -import json class DiscordBotsOrg(): # https://discordbots.org def __init__(self, client_id, token): @@ -21,4 +20,4 @@ class BotsDiscordPw(): # https://bots.discord.pw/ headers = {"Authorization": self.token} payload = {"server_count": count} async with aiohttp.ClientSession() as aioclient: - t = await aioclient.post(self.url, json=payload, headers=headers) \ No newline at end of file + await aioclient.post(self.url, json=payload, headers=headers) \ No newline at end of file