Skip to content

Commit

Permalink
style: update ruff version
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Dec 29, 2023
1 parent c747340 commit c0940d6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repos:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.2
rev: v0.1.9
hooks:
- id: ruff
- id: ruff-format
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dynamic = ["version"]
pg = ["psycopg[binary]"]
etl = ["gffutils", "biocommons.seqrepo", "wags-tails>=0.1.1"]
test = ["pytest>=6.0", "pytest-cov", "mock", "httpx"]
dev = ["pre-commit", "ruff>=0.1.2"]
dev = ["pre-commit", "ruff>=0.1.9"]
docs = [
"sphinx==6.1.3",
"sphinx-autodoc-typehints==1.22.0",
Expand Down
2 changes: 1 addition & 1 deletion src/gene/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def normalize(q: str = Query(..., description=normalize_q_descr)) -> NormalizeSe
tags=["Query"],
)
def normalize_unmerged(
q: str = Query(..., description=normalize_q_descr)
q: str = Query(..., description=normalize_q_descr),
) -> UnmergedNormalizationService:
"""Return all individual records associated with a normalized concept.
Expand Down

0 comments on commit c0940d6

Please sign in to comment.