Skip to content

Commit

Permalink
Update sensor_provider.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xirixiz authored Nov 2, 2021
1 parent e74ae64 commit ca04184
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions custom_components/afvalwijzer/sensor_provider.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
import hashlib

from datetime import date, datetime, timedelta

from homeassistant.helpers.entity import Entity
Expand All @@ -16,9 +16,6 @@
CONF_DEFAULT_LABEL,
CONF_ID,
CONF_INCLUDE_DATE_TODAY,
CONF_POSTAL_CODE,
CONF_STREET_NUMBER,
CONF_SUFFIX,
MIN_TIME_BETWEEN_UPDATES,
PARALLEL_UPDATES,
SENSOR_ICON,
Expand Down Expand Up @@ -55,14 +52,6 @@ def __init__(self, hass, waste_type, fetch_afvalwijzer_data, config):
def name(self):
return self._name

@property
def unique_id(self):
return hashlib.sha1(
f"{self.waste_type}{self.config.get(CONF_ID)}{self.config.get(CONF_POSTAL_CODE)}{self.config.get(CONF_STREET_NUMBER)}{self.config.get(CONF_SUFFIX,'')}".encode(
"utf-8"
)
).hexdigest()

@property
def icon(self):
return self._icon
Expand Down

0 comments on commit ca04184

Please sign in to comment.