Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ci:
- pytest
repos:
- repo: https://github.com/python-poetry/poetry
rev: 2.2.1
rev: 2.4.1
hooks:
- id: poetry-check
- id: poetry-lock
Expand All @@ -23,26 +23,26 @@ repos:
exclude: ^mkdocs\.yml$
- id: check-added-large-files
- repo: https://github.com/psf/black
rev: 25.9.0
rev: 26.5.1
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 6.0.1
rev: 8.0.1
hooks:
- id: isort
name: isort (python)
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.18.2
rev: v2.1.0
hooks:
- id: mypy
additional_dependencies:
[
anyio==4.11.0,
fastapi==0.117.1,
joserfc==1.3.4,
pydantic==2.11.9,
pydantic-settings==2.10.1,
pytest-asyncio==1.2.0,
pydantic==2.13.4,
pydantic-settings==2.14.2,
pytest-asyncio==1.4.0,
types-pyyaml==6.0.12.20250915,
]
- repo: local
Expand All @@ -65,7 +65,7 @@ repos:
- id: biome-check
additional_dependencies: ["@biomejs/biome@1.8.3"]
- repo: https://github.com/rbubley/mirrors-prettier
rev: "v3.6.2"
rev: "v3.8.4"
hooks:
- id: prettier
files: \.(html|md|yml|yaml)$
Expand Down
2 changes: 1 addition & 1 deletion goosebit/settings/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class GooseBitSettings(BaseSettings):
config_file: Path | None = None

port: int = 60053 # GOOSE
tenant: str | list = "DEFAULT"
tenant: str | list[str] = "DEFAULT"

poll_time: str = "00:01:00"

Expand Down
1 change: 0 additions & 1 deletion goosebit/updater/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from fastapi.requests import Request

from goosebit.device_manager import DeviceManager, get_device_or_none
from goosebit.settings import config
from goosebit.settings.schema import DeviceAuthMode, ExternalAuthMode

from ..db.models import Device
Expand Down
Loading
Loading