Skip to content

Commit 25fd19e

Browse files
linter: prevent import redefinition
1 parent 65c9f37 commit 25fd19e

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

slack_bolt/listener/async_listener.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,7 @@ async def run_ack_function(self, *, request: AsyncBoltRequest, response: BoltRes
7272

7373

7474
from logging import Logger
75-
from typing import Callable, Awaitable
76-
77-
from slack_bolt.listener_matcher.async_listener_matcher import AsyncListenerMatcher
7875
from slack_bolt.logger import get_bolt_app_logger
79-
from slack_bolt.middleware.async_middleware import AsyncMiddleware
80-
from slack_bolt.request.async_request import AsyncBoltRequest
81-
from slack_bolt.response import BoltResponse
8276

8377

8478
class AsyncCustomListener(AsyncListener):

slack_bolt/listener_matcher/async_listener_matcher.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ async def async_matches(self, req: AsyncBoltRequest, resp: BoltResponse) -> bool
2525

2626
from slack_bolt.kwargs_injection.async_utils import build_async_required_kwargs
2727
from slack_bolt.logger import get_bolt_app_logger
28-
from slack_bolt.request.async_request import AsyncBoltRequest
29-
from slack_bolt.response import BoltResponse
3028

3129

3230
class AsyncCustomListenerMatcher(AsyncListenerMatcher):

0 commit comments

Comments
 (0)