Skip to content
Open
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
repos:
- repo: https://github.com/pycqa/isort
rev: 7.0.0
rev: 8.0.0
hooks:
- id: isort
- repo: https://github.com/asottile/pyupgrade
rev: v3.21.1
rev: v3.21.2
hooks:
- id: pyupgrade
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
rev: 26.1.0
hooks:
- id: black
language_version: python3
Expand All @@ -19,7 +19,7 @@ repos:
language_version: python3
args: [--config, setup.cfg]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.18.2'
rev: 'v1.19.1'
hooks:
- id: mypy
pass_filenames: false
Expand Down
2 changes: 1 addition & 1 deletion kbatch-proxy/kbatch_proxy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
V1ObjectMeta,
V1Secret,
)
from kubernetes.utils import create_from_dict # type:ignore
from kubernetes.utils import create_from_dict # type: ignore
from pydantic import BaseModel
from pydantic_settings import BaseSettings, SettingsConfigDict

Expand Down
Loading