Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from flask_sqlalchemy import SQLAlchemy
from werkzeug.middleware.proxy_fix import ProxyFix
from sqlalchemy import create_engine, Column, Integer, String, DateTime, Text, Float, Boolean
from sqlalchemy.orm import sessionmaker, DeclarativeBase
from sqlalchemy.orm import sessionmaker
from sqlalchemy.exc import SQLAlchemyError
import base58
from dotenv import load_dotenv
Expand All @@ -34,8 +34,6 @@
# Configure logging
logging.basicConfig(level=logging.DEBUG)

class Base(DeclarativeBase):
pass
db = SQLAlchemy()

# Create Flask app
Expand Down