|
|
@@ -7,7 +7,10 @@ modification, then again after to compare the two outputs.
|
|
|
"""
|
|
|
import sys
|
|
|
|
|
|
-from custom_components.tuya_local.helpers.device_config import available_configs, TuyaDeviceConfig
|
|
|
+from custom_components.tuya_local.helpers.device_config import (
|
|
|
+ available_configs,
|
|
|
+ TuyaDeviceConfig,
|
|
|
+)
|
|
|
|
|
|
def main() -> int:
|
|
|
print("Catalog================")
|
|
|
@@ -17,5 +20,6 @@ def main() -> int:
|
|
|
for entity in device.secondary_entities():
|
|
|
print(f"{config}: {entity.config_id}")
|
|
|
|
|
|
+
|
|
|
if __name__ == "__main__":
|
|
|
sys.exit(main())
|