mirror of
https://github.com/home-assistant/core.git
synced 2026-06-02 21:54:27 +01:00
7f6b8bbd1e
* add strict type annotations * add missing return type annotation
14 lines
247 B
Python
14 lines
247 B
Python
"""Models for Aladdin connect cover platform."""
|
|
from __future__ import annotations
|
|
|
|
from typing import TypedDict
|
|
|
|
|
|
class DoorDevice(TypedDict):
|
|
"""Aladdin door device."""
|
|
|
|
device_id: str
|
|
door_number: int
|
|
name: str
|
|
status: str
|