From f7f7033ea59a6def0eb76014a6887d8d734f77a9 Mon Sep 17 00:00:00 2001 From: suti7yk5032 Date: Sun, 7 Jul 2024 15:33:30 +0900 Subject: [PATCH] =?UTF-8?q?class=E5=90=8D=E3=81=A0=E3=82=81=E3=81=A0?= =?UTF-8?q?=E3=81=A3=E3=81=9F=E3=81=8B=E3=82=89=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dislocker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dislocker.py b/dislocker.py index 96cc890..7fb720c 100644 --- a/dislocker.py +++ b/dislocker.py @@ -7,7 +7,7 @@ import string import random import csv -class Dislocker(): +class DL(): def __init__(self): self.config_dir_path = "./config/" self.export_dir_path = "./export/" @@ -312,6 +312,6 @@ class Bot(discord.Client): intents = discord.Intents.default() intents.message_content = True -dislocker = Dislocker() +dislocker = DL() bot = Bot(intents=intents) bot.run(dislocker.server_config['bot']['token'])