1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00

Remove unused imports

This commit is contained in:
Steffo 2019-04-09 09:12:48 +02:00
parent 94980b3d15
commit 6b4f39428b
11 changed files with 9 additions and 11 deletions

View file

@ -3,3 +3,4 @@ websockets>=7.0
pytest>=4.3.1
psycopg2-binary>=2.8
aiohttp>=3.5.4
Markdown>=3.1

View file

@ -3,7 +3,6 @@ import asyncio
import typing
import logging as _logging
import sys
import re
from ..commands import NullCommand
from ..utils import asyncify, Call, Command
from ..network import RoyalnetLink, Message

View file

@ -1,4 +1,4 @@
from ..utils import Command, CommandArgs, Call
from ..utils import Command, Call
class ColorCommand(Command):

View file

@ -1,4 +1,4 @@
from ..utils import Command, CommandArgs, Call
from ..utils import Command, Call
from ..database.tables import Royal, Telegram

View file

@ -1,4 +1,4 @@
from ..utils import Command, CommandArgs, Call, asyncify
from ..utils import Command, Call, asyncify
from ..database.tables import Royal, Alias

View file

@ -1,4 +1,4 @@
from ..utils import Command, CommandArgs, Call
from ..utils import Command, Call
class NullCommand(Command):

View file

@ -1,5 +1,5 @@
import asyncio
from ..utils import Command, CommandArgs, Call, InvalidInputError
from ..utils import Command, Call, InvalidInputError
class PingCommand(Command):

View file

@ -1,5 +1,5 @@
import re
from ..utils import Command, CommandArgs, Call, safeformat
from ..utils import Command, Call, safeformat
SHIP_RESULT = "💕 {one} + {two} = [b]{result}[/b]"

View file

@ -1,5 +1,5 @@
import random
from ..utils import Command, CommandArgs, Call, safeformat
from ..utils import Command, Call, safeformat
DS_LIST = ["della secca", "del seccatore", "del secchiello", "del secchio", "del secchione", "del secondino",

View file

@ -1,6 +1,6 @@
import typing
from telegram import Update, User
from ..utils import Command, CommandArgs, Call, asyncify, UnsupportedError
from ..utils import Command, Call, asyncify, UnsupportedError
from ..database.tables import Royal, Telegram

View file

@ -1,8 +1,6 @@
from sqlalchemy import Column, \
Integer, \
String, \
BigInteger, \
LargeBinary, \
ForeignKey
from sqlalchemy.orm import relationship
from .royals import Royal