mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
* fix: don't require Downloadable.file_id to be writable * docs: add changelog * Update CHANGES/1628.bugfix.rst Co-authored-by: Alex Root Junior <jroot.junior@gmail.com> --------- Co-authored-by: Alex Root Junior <jroot.junior@gmail.com>
6 lines
108 B
Python
6 lines
108 B
Python
from typing import Protocol
|
|
|
|
|
|
class Downloadable(Protocol):
|
|
@property
|
|
def file_id(self) -> str: ...
|