mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
fix(annotation): missing underscore before "private" typevar
This commit is contained in:
parent
aa289cdd93
commit
c1adbb02b9
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ class BaseSession(abc.ABC, Generic[_ProxyType]):
|
|||
def __init__(
|
||||
self,
|
||||
api: Optional[TelegramAPIServer] = None,
|
||||
proxy: Optional[ProxyType] = None,
|
||||
proxy: Optional[_ProxyType] = None,
|
||||
json_loads: Optional[Callable[[Any], Any]] = None,
|
||||
json_dumps: Optional[Callable[[Any], Any]] = None,
|
||||
) -> None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue