diff --git a/aiogram/types/update.py b/aiogram/types/update.py index b284f0f7..0fed38b6 100644 --- a/aiogram/types/update.py +++ b/aiogram/types/update.py @@ -20,6 +20,7 @@ T = TypeVar("T") def lru_cache(func: Callable[..., T]) -> T: + """fix lru_cache annotation doesn't work with a property""" return functools.lru_cache()(func) # type: ignore