Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -11,14 +11,14 @@ repos:


- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.6
rev: v0.8.3
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.1
rev: v1.13.0
hooks:
- id: mypy
additional_dependencies: [types-attrs]
1 change: 1 addition & 0 deletions custom_components/upnp_availability/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The UPnP Availability integration."""

import logging

import voluptuous as vol
Expand Down
1 change: 1 addition & 0 deletions custom_components/upnp_availability/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This platform provides a binary sensor to track the availability
of UPnP devices, based on ssdp:alive and ssdp:byebye notifications.
"""

import asyncio
import logging
from collections import defaultdict
Expand Down
1 change: 1 addition & 0 deletions custom_components/upnp_availability/config_flow.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Config flow for UPnP Availability."""

import logging

from homeassistant.helpers import config_entry_flow
Expand Down
Loading