mirror of
https://github.com/Lilac-Rose/Lacie.git
synced 2026-07-19 09:02:20 -05:00
fixed embed_colors.db being in project root
This commit is contained in:
parent
a9ff9a85d1
commit
efdcbdcdaf
|
|
@ -1,9 +1,11 @@
|
|||
import discord
|
||||
import sqlite3
|
||||
import os
|
||||
from discord.ext import commands
|
||||
from discord import app_commands
|
||||
|
||||
DB_PATH = "embed_colors.db"
|
||||
# Get the directory where this file is located
|
||||
DB_PATH = os.path.join(os.path.dirname(__file__), "embed_colors.db")
|
||||
|
||||
class EmbedColor(commands.Cog):
|
||||
def __init__(self, bot):
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user