From 36b19de9da5934f241ef47b0667f982a1fe8d081 Mon Sep 17 00:00:00 2001 From: Twentysix Date: Thu, 27 Apr 2017 01:00:04 +0200 Subject: [PATCH] [Core] Moved checks.py to main core package --- core/{utils => }/checks.py | 0 core/owner.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename core/{utils => }/checks.py (100%) diff --git a/core/utils/checks.py b/core/checks.py similarity index 100% rename from core/utils/checks.py rename to core/checks.py diff --git a/core/owner.py b/core/owner.py index 3bf017869..3f34ddc65 100644 --- a/core/owner.py +++ b/core/owner.py @@ -1,5 +1,5 @@ from discord.ext import commands -from core.utils import checks +from core import checks from core.utils.chat_formatting import box import asyncio import importlib