Skip to content

Commit 577d6b4

Browse files
authored
fix: remove unused mypy ignore type comments (#1769)
1 parent 9624808 commit 577d6b4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

slack_sdk/socket_mode/websocket_client/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from logging import Logger
1212
from queue import Queue
1313
from threading import Lock
14-
from typing import Union, Optional, List, Callable, Tuple
14+
from typing import Callable, List, Optional, Tuple, Union
1515

1616
import websocket
1717
from websocket import WebSocketApp, WebSocketException
@@ -180,10 +180,10 @@ def on_close(
180180

181181
self.current_session = websocket.WebSocketApp(
182182
self.wss_uri,
183-
on_open=on_open, # type: ignore[arg-type]
184-
on_message=on_message, # type: ignore[arg-type]
185-
on_error=on_error, # type: ignore[arg-type]
186-
on_close=on_close, # type: ignore[arg-type]
183+
on_open=on_open,
184+
on_message=on_message,
185+
on_error=on_error,
186+
on_close=on_close,
187187
)
188188
self.auto_reconnect_enabled = self.default_auto_reconnect_enabled
189189

0 commit comments

Comments
 (0)