File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1111 timeout-minutes : 20
1212 strategy :
1313 matrix :
14- python-version : ["3.9 "]
14+ python-version : ["3.13 "]
1515 steps :
1616 - uses : actions/checkout@v4
1717 - name : Set up Python ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 11# pip install -r requirements/async.txt
22aiohttp>=3,<4
3- websockets<15
3+ websockets<16
Original file line number Diff line number Diff line change 1- mypy==1.14.1
2- flake8==6.0.0
1+ mypy==1.15.0
2+ flake8==7.1.2
33black==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(
184184) -> str :
185185 filtered_body = _build_filtered_body (req .body )
186186 default_message = f"Unhandled request ({ filtered_body } )"
187- is_async = type (req ) != BoltRequest
187+ is_async = not isinstance (req , BoltRequest )
188188 if is_workflow_step_edit (req .body ) or is_workflow_step_save (req .body ) or is_workflow_step_execute (req .body ):
189189 # @app.step
190190 callback_id = (
You can’t perform that action at this time.
0 commit comments