Skip to content

Commit

Permalink
Upgrade linters/formatters (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra authored Feb 23, 2024
1 parent c7bd559 commit 1300974
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.14
rev: v0.2.2
hooks:
- id: ruff
args: [--fix]

- repo: https://github.com/psf/black
rev: 23.3.0
rev: 24.2.0
hooks:
- id: black
language_version: python3.11
Expand All @@ -18,6 +18,6 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.9-for-vscode
rev: v3.1.0
hooks:
- id: prettier
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ classifiers = [
dependencies = [
"fastapi",
"sse-starlette",
"typing-extensions",
"typing-extensions>=4.5.0",
"uvicorn",
"httpx",
"httpx-sse",
Expand Down
1 change: 1 addition & 0 deletions src/fastapi_poe/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
For more details, see: https://developer.poe.com/server-bots/accessing-other-bots-on-poe
"""

import asyncio
import contextlib
import json
Expand Down

0 comments on commit 1300974

Please sign in to comment.