Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
z44d authored Aug 13, 2024
1 parent 1b63c2e commit cda901a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tgram/types/type_.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@

logger = logging.getLogger(__name__)

BOUNDED_TYPES = (
tgram.types.User,
tgram.types.CallbackQuery,
tgram.types.Message,
tgram.types.Chat,
tgram.types.ChatFullInfo,
tgram.types.InlineQuery,
)
BOUNDED_TYPES = Union[
"tgram.types.User",
"tgram.types.CallbackQuery",
"tgram.types.Message",
"tgram.types.Chat",
"tgram.types.ChatFullInfo",
"tgram.types.InlineQuery",
]


class Type_:
Expand Down

0 comments on commit cda901a

Please sign in to comment.