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
7 changes: 5 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,25 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.12.0
rev: v0.14.0
hooks:
# Run the linter.
- id: ruff
args: [ --fix ]
# Run the formatter.
- id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-json
exclude: .devcontainer
- id: check-yaml
- id: check-added-large-files
- id: no-commit-to-branch
stages: [pre-commit]
args: [--branch, main]
- repo: local
hooks:
- id: mypy
Expand Down
1 change: 1 addition & 0 deletions pyoverkiz/enums/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ class EventName(StrEnum):
REAL_TIME_SETUP_NOTIFICATION = "RealTimeSetupNotificationEvent"
REFRESH_ALL_DEVICES_STATES_COMPLETED = "RefreshAllDevicesStatesCompletedEvent"
REFRESH_ALL_DEVICES_STATES_FAILED = "RefreshAllDevicesStatesFailedEvent"
REFRESH_EVERYTHING_COMPLETED = "RefreshEverythingCompletedEvent"
RESELLER_DELEGATION = "ResellerDelegationEvent"
SECONDARY_ACCOUNT_UPDATED = "SecondaryAccountUpdatedEvent"
SETUP_JOB_COMPLETED = "SetupJobCompletedEvent"
Expand Down