From 61e60d1c563a9dad82bdaab2974ba020c8888d1a Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 6 Nov 2017 01:56:52 -0500 Subject: [PATCH] Added global color --- src/main/cogs/booru.py | 1 - src/main/utils/utils.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/cogs/booru.py b/src/main/cogs/booru.py index 26ce315..cbeedc1 100644 --- a/src/main/cogs/booru.py +++ b/src/main/cogs/booru.py @@ -21,7 +21,6 @@ class MsG: def __init__(self, bot): self.bot = bot - self.color = d.Color(0x1A1A1A) self.LIMIT = 100 self.HISTORY_LIMIT = 150 self.RATE_LIMIT = u.RATE_LIMIT diff --git a/src/main/utils/utils.py b/src/main/utils/utils.py index 791e049..02bb003 100644 --- a/src/main/utils/utils.py +++ b/src/main/utils/utils.py @@ -69,6 +69,7 @@ tasks = setdefault('cogs/tasks.pkl', {'auto_del': [], 'auto_qual': [], 'auto_rev temp = setdefault('temp.pkl', {}) RATE_LIMIT = 2.2 +color = d.Color(0x1A1A1A) session = aiohttp.ClientSession()