mirror of
https://github.com/home-assistant/core.git
synced 2025-04-23 16:57:53 +00:00
Activate mypy for Smart Meter Texas (#53954)
This commit is contained in:
parent
d8c679809f
commit
355a067d84
@ -94,7 +94,7 @@ class SmartMeterTexasData:
|
||||
self.account = account
|
||||
websession = aiohttp_client.async_get_clientsession(hass)
|
||||
self.client = Client(websession, account)
|
||||
self.meters = []
|
||||
self.meters: list = []
|
||||
|
||||
async def setup(self):
|
||||
"""Fetch all of the user's meters."""
|
||||
|
3
mypy.ini
3
mypy.ini
@ -1631,9 +1631,6 @@ ignore_errors = true
|
||||
[mypy-homeassistant.components.sma.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.smart_meter_texas.*]
|
||||
ignore_errors = true
|
||||
|
||||
[mypy-homeassistant.components.smartthings.*]
|
||||
ignore_errors = true
|
||||
|
||||
|
@ -136,7 +136,6 @@ IGNORED_MODULES: Final[list[str]] = [
|
||||
"homeassistant.components.sesame.*",
|
||||
"homeassistant.components.sharkiq.*",
|
||||
"homeassistant.components.sma.*",
|
||||
"homeassistant.components.smart_meter_texas.*",
|
||||
"homeassistant.components.smartthings.*",
|
||||
"homeassistant.components.smarttub.*",
|
||||
"homeassistant.components.smarty.*",
|
||||
|
Loading…
x
Reference in New Issue
Block a user