fix: don't require Downloadable.file_id to be writable

This commit is contained in:
monosans 2025-01-09 19:29:03 +03:00
parent 44bd8fe103
commit 4d9037612b
No known key found for this signature in database

View file

@ -2,4 +2,5 @@ from typing import Protocol
class Downloadable(Protocol):
file_id: str
@property
def file_id(self) -> str: ...