Skip to content

Commit 1f6f610

Browse files
committed
Update slack_sdk/oauth/installation_store/async_cacheable_installation_store.py
1 parent 3fb0f1b commit 1f6f610

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

slack_sdk/oauth/installation_store/async_cacheable_installation_store.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ async def async_save(self, installation: Installation):
2525
return await self.underlying.async_save(installation)
2626

2727
async def async_find_bot(self, *, enterprise_id: Optional[str], team_id: Optional[str]) -> Optional[Bot]:
28-
pass
2928
key = f"{enterprise_id}-{team_id}"
3029
if key in self.cached_bots:
3130
return self.cached_bots[key]

0 commit comments

Comments
 (0)