fix(DM error): fix AttributeError: 'NoneType' on sending DM to the bot

This commit is contained in:
Romain J 2019-10-26 23:26:00 +02:00
commit ba1122c07b
4 changed files with 8 additions and 5 deletions
cogs/utils/models

View file

@ -1,6 +1,7 @@
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, BigInteger, JSON, ForeignKey, Boolean
from sqlalchemy.orm import relationship
from werkzeug.security import generate_password_hash, check_password_hash
Base = declarative_base()