1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-09 23:02:23 +01:00

Fix type annotation on extract_registry_entry_config (#3623)

Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
Quentin Smith
2022-10-11 22:15:03 -04:00
committed by GitHub
parent a8ff0a8913
commit 19900b004b
2 changed files with 5 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ class RegistryEntry:
return Schema(self.raw_schema)
class Registry(dict):
class Registry(dict[str, RegistryEntry]):
def __init__(self, base_schema=None, type_id_key=None):
super().__init__()
self.base_schema = base_schema or {}