Require update in cli for wifi commands (#956)

Executing wifi join requires passing the current time information for smart devices which we read from the device.
This PR removes wifi from the block list to make it work.
This commit is contained in:
Teemu R 2024-06-07 13:47:51 +02:00 committed by GitHub
parent b8c1b39cf0
commit 9b66ac8765
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -92,7 +92,7 @@ ENCRYPT_TYPES = [encrypt_type.value for encrypt_type in DeviceEncryptionType]
DEVICE_FAMILY_TYPES = [device_family_type.value for device_family_type in DeviceFamily]
# Block list of commands which require no update
SKIP_UPDATE_COMMANDS = ["wifi", "raw-command", "command"]
SKIP_UPDATE_COMMANDS = ["raw-command", "command"]
click.anyio_backend = "asyncio"