-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtype.txt
More file actions
22 lines (15 loc) · 623 Bytes
/
type.txt
File metadata and controls
22 lines (15 loc) · 623 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{notice}
{warning}
from typing import Union
from hydrogram import raw
from hydrogram.raw.core import TLObject
{name} = Union[{types}]
class {name}: # type: ignore
"""{docstring}
"""
QUALNAME = "hydrogram.raw.base.{qualname}"
def __init__(self):
raise TypeError("Base types can only be used for type checking purposes: "
"you tried to use a base type instance as argument, "
"but you need to instantiate one of its constructors instead. "
"More info: https://docs.hydrogram.org/en/latest/telegram/base/{doc_name}.html")