From 4af8e74fd18cb9f8b3db0def5796b0ed632d841b Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Thu, 11 May 2023 15:12:16 +0300 Subject: [PATCH] [file]: Move utils file to dir --- bot.py | 4 ++-- FFC.py => utils/FFC.py | 0 XOR.py => utils/XOR.py | 0 cogs/_colors.py => utils/colors.py | 3 ++- 4 files changed, 4 insertions(+), 3 deletions(-) rename FFC.py => utils/FFC.py (100%) rename XOR.py => utils/XOR.py (100%) rename cogs/_colors.py => utils/colors.py (75%) diff --git a/bot.py b/bot.py index bb7acff..61dd159 100644 --- a/bot.py +++ b/bot.py @@ -6,7 +6,8 @@ from json import load, dump from os import listdir, getenv from os.path import isfile, join, getsize -import XOR +import utils.XOR +import utils.FFC import discord from discord.utils import get @@ -23,7 +24,6 @@ from discord.ext.commands import HybridCommand import re import os import ast -import FFC import nekos import typing import asyncio diff --git a/FFC.py b/utils/FFC.py similarity index 100% rename from FFC.py rename to utils/FFC.py diff --git a/XOR.py b/utils/XOR.py similarity index 100% rename from XOR.py rename to utils/XOR.py diff --git a/cogs/_colors.py b/utils/colors.py similarity index 75% rename from cogs/_colors.py rename to utils/colors.py index 77d244c..b128730 100644 --- a/cogs/_colors.py +++ b/utils/colors.py @@ -12,4 +12,5 @@ light_colors = [ Color(0xFFAAF7) ] -def choise_light_color(): return choice(light_colors) \ No newline at end of file +def choise_light_color(): return choice(light_colors) +