@@ -26,7 +26,7 @@ def __init__(self, installation_store: AsyncInstallationStore):
2626 def logger (self ) -> Logger :
2727 return self .underlying .logger
2828
29- async def async_save (self , installation : Installation ): # type: ignore[explicit-override]
29+ async def async_save (self , installation : Installation ):
3030 # Invalidate cache data for update operations
3131 key = f"{ installation .enterprise_id or '' } -{ installation .team_id or '' } "
3232 if key in self .cached_bots :
@@ -36,14 +36,14 @@ async def async_save(self, installation: Installation): # type: ignore[explicit
3636 self .cached_installations .pop (key )
3737 return await self .underlying .async_save (installation )
3838
39- async def async_save_bot (self , bot : Bot ): # type: ignore[explicit-override]
39+ async def async_save_bot (self , bot : Bot ):
4040 # Invalidate cache data for update operations
4141 key = f"{ bot .enterprise_id or '' } -{ bot .team_id or '' } "
4242 if key in self .cached_bots :
4343 self .cached_bots .pop (key )
4444 return await self .underlying .async_save_bot (bot )
4545
46- async def async_find_bot ( # type: ignore[explicit-override]
46+ async def async_find_bot (
4747 self ,
4848 * ,
4949 enterprise_id : Optional [str ],
@@ -64,7 +64,7 @@ async def async_find_bot( # type: ignore[explicit-override]
6464 self .cached_bots [key ] = bot
6565 return bot
6666
67- async def async_find_installation ( # type: ignore[explicit-override]
67+ async def async_find_installation (
6868 self ,
6969 * ,
7070 enterprise_id : Optional [str ],
0 commit comments