mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Activate mypy for Reddit (#53949)
This commit is contained in:
parent
f2f084abe2
commit
36c0478c4a
@ -91,7 +91,7 @@ class RedditSensor(SensorEntity):
|
|||||||
self._limit = limit
|
self._limit = limit
|
||||||
self._sort_by = sort_by
|
self._sort_by = sort_by
|
||||||
|
|
||||||
self._subreddit_data = []
|
self._subreddit_data: list = []
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def name(self):
|
def name(self):
|
||||||
|
3
mypy.ini
3
mypy.ini
@ -1608,9 +1608,6 @@ ignore_errors = true
|
|||||||
[mypy-homeassistant.components.rachio.*]
|
[mypy-homeassistant.components.rachio.*]
|
||||||
ignore_errors = true
|
ignore_errors = true
|
||||||
|
|
||||||
[mypy-homeassistant.components.reddit.*]
|
|
||||||
ignore_errors = true
|
|
||||||
|
|
||||||
[mypy-homeassistant.components.ring.*]
|
[mypy-homeassistant.components.ring.*]
|
||||||
ignore_errors = true
|
ignore_errors = true
|
||||||
|
|
||||||
|
@ -132,7 +132,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
|||||||
"homeassistant.components.profiler.*",
|
"homeassistant.components.profiler.*",
|
||||||
"homeassistant.components.proxmoxve.*",
|
"homeassistant.components.proxmoxve.*",
|
||||||
"homeassistant.components.rachio.*",
|
"homeassistant.components.rachio.*",
|
||||||
"homeassistant.components.reddit.*",
|
|
||||||
"homeassistant.components.ring.*",
|
"homeassistant.components.ring.*",
|
||||||
"homeassistant.components.rpi_power.*",
|
"homeassistant.components.rpi_power.*",
|
||||||
"homeassistant.components.ruckus_unleashed.*",
|
"homeassistant.components.ruckus_unleashed.*",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user