mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-12-17 23:24:20 +00:00
Remove not used imports
This commit is contained in:
parent
3ed92e8c10
commit
d9b7615843
3 changed files with 2 additions and 4 deletions
3
db.py
3
db.py
|
@ -1,8 +1,7 @@
|
|||
import time
|
||||
import datetime
|
||||
from sqlalchemy.ext.declarative import declarative_base
|
||||
from sqlalchemy.orm import sessionmaker, relationship
|
||||
from sqlalchemy import Column, BigInteger, Integer, String, Numeric, DateTime, ForeignKey, Float, Enum, create_engine, UniqueConstraint
|
||||
from sqlalchemy import Column, BigInteger, Integer, String, DateTime, ForeignKey, Float, Enum, create_engine, UniqueConstraint
|
||||
import requests
|
||||
from errors import RequestError, NotFoundError, AlreadyExistingError
|
||||
import re
|
||||
|
|
|
@ -4,7 +4,7 @@ import math
|
|||
import db
|
||||
import errors
|
||||
import stagismo
|
||||
from telegram import Bot, Update, Message
|
||||
from telegram import Bot, Update
|
||||
from telegram.ext import Updater, CommandHandler
|
||||
from discord import Status as DiscordStatus
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
from flask import Flask, render_template
|
||||
from db import Session, Royal, Steam, RocketLeague, Dota, Osu, Overwatch, LeagueOfLegends, Diario, Telegram
|
||||
from sqlalchemy.orm import joinedload
|
||||
|
||||
app = Flask(__name__)
|
||||
|
||||
|
|
Loading…
Reference in a new issue