Activate mypy for Reddit (#53949)
parent
f2f084abe2
commit
36c0478c4a
|
@ -91,7 +91,7 @@ class RedditSensor(SensorEntity):
|
|||
self._limit = limit
|
||||
self._sort_by = sort_by
|
||||
|
||||
self._subreddit_data = []
|
||||
self._subreddit_data: list = []
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
|
|
3
mypy.ini
3
mypy.ini
|
@ -1608,9 +1608,6 @@ ignore_errors = true
|
|||
[mypy-homeassistant.components.rachio.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.reddit.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.ring.*]
|
||||
ignore_errors = true
|
||||
|
||||
|
|
|
@ -132,7 +132,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
|||
"homeassistant.components.profiler.*",
|
||||
"homeassistant.components.proxmoxve.*",
|
||||
"homeassistant.components.rachio.*",
|
||||
"homeassistant.components.reddit.*",
|
||||
"homeassistant.components.ring.*",
|
||||
"homeassistant.components.rpi_power.*",
|
||||
"homeassistant.components.ruckus_unleashed.*",
|
||||
|
|
Loading…
Reference in New Issue