diff --git a/aiogram/dispatcher/router.py b/aiogram/dispatcher/router.py index 9bb12cfd..ba8f389c 100644 --- a/aiogram/dispatcher/router.py +++ b/aiogram/dispatcher/router.py @@ -179,12 +179,10 @@ class Router: self._parent_router = router router.sub_routers.append(self) - def include_router(self, router: Union[Router, str]) -> Router: + def include_router(self, router: Router) -> Router: """ Attach another router. - Can be attached directly or by import string in format ":" - :param router: :return: """