Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gdgib committed Nov 23, 2024
1 parent d167cbf commit 7092f80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/vesync/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""VeSync integration."""

import logging

from datetime import timedelta

from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME, Platform
from homeassistant.core import HomeAssistant, ServiceCall
Expand Down
2 changes: 1 addition & 1 deletion custom_components/vesync/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

from .const import DOMAIN


_LOGGER = logging.getLogger(__name__)


class VeSyncFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
"""Handle a config flow."""

Expand Down
1 change: 1 addition & 0 deletions custom_components/vesync/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ def native_value(self):

class VeSyncAirQualitySensorPUR131S(VeSyncAirQualitySensor):
"""Representation of a an air quality sensor for the PUR131S."""

@property
def native_value(self):
"""Return the air quality index."""
Expand Down

0 comments on commit 7092f80

Please sign in to comment.