Skip to content

Commit 4e0da4f

Browse files
committed
Remove unused code
1 parent 5a6997d commit 4e0da4f

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

cogs/social.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
1-
import json
2-
import libsql_experimental as libsql
3-
import os
4-
import time
5-
from dotenv import load_dotenv
6-
import discord
71
from discord.ext import commands
82

9-
load_dotenv()
10-
11-
WELCOME_CHANNEL_ID : str = os.getenv("WELCOME_CHANNEL_ID") or ""
12-
TURSO_URL : str = os.getenv("TURSO_URL") or ""
13-
TURSO_TOKEN : str = os.getenv("TURSO_TOKEN") or ""
14-
15-
INVITE_XP = 50
16-
173
socials = {
184
"youtube": "https://www.youtube.com/channel/UCEztUC2WwKEDkVl9c6oUoTw?sub_confirmation=1",
195
"udemy": "https://www.udemy.com/user/thomas-collart/?referralCode=F0901265E01C7FDADABC",
@@ -23,7 +9,6 @@
239
"linkedin": "https://linkedin.com/in/thomascollart/"
2410
}
2511

26-
2712
class Social(commands.Cog):
2813
def __init__(self, bot):
2914
self.bot = bot
@@ -54,8 +39,5 @@ async def youtube(self, ctx):
5439
await ctx.send(socials["youtube"])
5540

5641

57-
58-
59-
6042
async def setup(bot):
6143
await bot.add_cog(Social(bot))

0 commit comments

Comments
 (0)