Fix typo in tuya select (#78881)

pull/78893/head
epenet 2022-09-21 13:27:11 +02:00 committed by GitHub
parent 9e7c03af56
commit a605b6bcf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ class TuyaSelectEntity(TuyaEntity, SelectEntity):
self.entity_description = description
self._attr_unique_id = f"{super().unique_id}{description.key}"
self._attr_opions: list[str] = []
self._attr_options: list[str] = []
if enum_type := self.find_dpcode(
description.key, dptype=DPType.ENUM, prefer_function=True
):