This commit is contained in:
Dawid Rejowski 2022-09-11 23:11:59 +02:00
parent 9b90eb14ff
commit 80bea7e86f
2 changed files with 2 additions and 5 deletions

View file

@ -1,12 +1,9 @@
from nio import AsyncClient, MatrixRoom
from chat_functions import send_text_to_room, upload_image, upload_stickerpack, is_stickerpack_existing, has_permission
from chat_functions import send_text_to_room
from matrix_reuploader import MatrixReuploader
from sticker_types import MatrixStickerset
from telegram_exporter import TelegramExporter
import tempfile
class Command:
def __init__(self, client: AsyncClient, room: MatrixRoom, command: str, tg_exporter: TelegramExporter):

View file

@ -1,7 +1,7 @@
import logging
import traceback
from nio import AsyncClient, MatrixRoom, RoomMessageText, InviteEvent, InviteMemberEvent
from nio import AsyncClient, MatrixRoom, RoomMessageText, InviteMemberEvent
from bot_commands import Command
from chat_functions import send_text_to_room