Skip to content

Commit 6e4c86d

Browse files
committed
Remove unused imports
1 parent af04ca1 commit 6e4c86d

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

mautrix/bridge/custom_puppet.py

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,12 @@
55
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
from __future__ import annotations
77

8-
from typing import Awaitable, Iterator
98
from abc import ABC, abstractmethod
10-
from itertools import chain
119
import asyncio
1210
import hashlib
1311
import hmac
14-
import json
1512
import logging
1613

17-
from aiohttp import ClientConnectionError
1814
from yarl import URL
1915

2016
from mautrix.appservice import AppService, IntentAPI
@@ -26,23 +22,7 @@
2622
MatrixRequestError,
2723
WellKnownError,
2824
)
29-
from mautrix.types import (
30-
Event,
31-
EventFilter,
32-
EventType,
33-
Filter,
34-
FilterID,
35-
LoginType,
36-
MatrixUserIdentifier,
37-
PresenceState,
38-
RoomEventFilter,
39-
RoomFilter,
40-
RoomID,
41-
StateFilter,
42-
SyncToken,
43-
UserID,
44-
)
45-
from mautrix.util import background_task
25+
from mautrix.types import LoginType, MatrixUserIdentifier, RoomID, UserID
4626

4727
from .. import bridge as br
4828

0 commit comments

Comments
 (0)