We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6bd97 commit 6490db4Copy full SHA for 6490db4
.github/workflows/flake8.yml
@@ -11,7 +11,7 @@ jobs:
11
timeout-minutes: 20
12
strategy:
13
matrix:
14
- python-version: ["3.9"]
+ python-version: ["3.13"]
15
steps:
16
- uses: actions/checkout@v4
17
- name: Set up Python ${{ matrix.python-version }}
slack_bolt/logger/messages.py
@@ -184,7 +184,7 @@ def warning_unhandled_request(
184
) -> str:
185
filtered_body = _build_filtered_body(req.body)
186
default_message = f"Unhandled request ({filtered_body})"
187
- is_async = type(req) != BoltRequest
+ is_async = not isinstance(req, BoltRequest)
188
if is_workflow_step_edit(req.body) or is_workflow_step_save(req.body) or is_workflow_step_execute(req.body):
189
# @app.step
190
callback_id = (
0 commit comments