File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
timeout-minutes : 20
12
12
strategy :
13
13
matrix :
14
- python-version : ["3.9 "]
14
+ python-version : ["3.13 "]
15
15
steps :
16
16
- uses : actions/checkout@v4
17
17
- name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 1
1
mypy==1.15.0
2
- flake8==6.0.0
2
+ flake8==7.1.2
3
3
black==24.8.0 # Until we drop Python 3.6 support, we have to stay with this version
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ def warning_unhandled_request(
184
184
) -> str :
185
185
filtered_body = _build_filtered_body (req .body )
186
186
default_message = f"Unhandled request ({ filtered_body } )"
187
- is_async = type (req ) != BoltRequest
187
+ is_async = not isinstance (req , BoltRequest )
188
188
if is_workflow_step_edit (req .body ) or is_workflow_step_save (req .body ) or is_workflow_step_execute (req .body ):
189
189
# @app.step
190
190
callback_id = (
You can’t perform that action at this time.
0 commit comments