Skip to content

Commit e2a59aa

Browse files
Apply suggestions from code review
Co-authored-by: Anand <[email protected]>
1 parent 14c8db9 commit e2a59aa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16-
python-version: ["3.8", "3.9", "3.10", "3.11"]
16+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
- name: Clone Repository

supafunc/_async/functions_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async def _request(
2929
raise FunctionsHttpError(
3030
response.json().get("error")
3131
or f"An error occurred while requesting your edge function at {exc.request.url!r}."
32-
)
32+
) from exc
3333

3434
return response
3535

0 commit comments

Comments
 (0)