mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-22 03:03:35 +00:00
9473d97ad2
Introduce common module interfaces across smart and iot devices and provide better typing implementation for getting modules to support this.
26 lines
499 B
Python
26 lines
499 B
Python
"""Module for Implementation for ModuleMapping and ModuleName types.
|
|
|
|
Custom dict for getting typed modules from the module dict.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Generic, TypeVar
|
|
|
|
if TYPE_CHECKING:
|
|
from .module import Module
|
|
|
|
_ModuleT = TypeVar("_ModuleT", bound="Module")
|
|
|
|
|
|
class ModuleName(str, Generic[_ModuleT]):
|
|
"""Generic Module name type.
|
|
|
|
At runtime this is a generic subclass of str.
|
|
"""
|
|
|
|
__slots__ = ()
|
|
|
|
|
|
ModuleMapping = dict
|