Skip to content

Commit 31db6b7

Browse files
authored
Merge pull request #8 from notsniped/debloat-imports
Debloats a few imports in starting of code.
2 parents fd4970e + 3e02a81 commit 31db6b7

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

main.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
#Imports
22
import discord
3-
from discord.ext import commands
3+
from discord.ext import commands, tasks
44
from discord.ext.commands import *
5-
from discord.ext import tasks
6-
import os
7-
import os.path
5+
import os, os.path
86
import json
9-
import time
7+
import time, datetime
108
import asyncio
119
import random
12-
import datetime
1310
from discord_slash import SlashCommand, SlashContext
1411
from discord_slash.utils.manage_commands import create_choice, create_option
1512
import api.auth
@@ -324,4 +321,4 @@ async def monthly(ctx:SlashContext):
324321
await ctx.reply(f'You claimed 1000000 coins from this weekly. Check back in 1 month for your next one!')
325322

326323
# Initialization
327-
client.run(api.auth.token)
324+
client.run(api.auth.token)

0 commit comments

Comments
 (0)