Removing Database Connection

pull/4/head
sgoudham 4 years ago
parent 7865ca3eac
commit 0ba439a956

@ -5,8 +5,6 @@ from PIL import Image, ImageDraw, ImageFont
from discord.ext import commands
from discord.ext.commands import command, cooldown, BucketType
import db
def generate_meme(image_path, top_text, bottom_text='', font_path='homies/impact/impacted.ttf', font_size=9):
get_image = Image.open(image_path)
@ -56,10 +54,6 @@ class Fun(commands.Cog):
async def homies(self, ctx, *, user_word):
"""Allows people to summon the homies"""
conn = db.connection()
if conn:
print("Yes server is working!")
if len(user_word) >= 20:
await ctx.send("Please make sure the prompt is below **20** characters!")
return

Loading…
Cancel
Save