Explorar el Código

black reformatting

Jason Rumney hace 2 años
padre
commit
cf131f72e4
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. 5 1
      util/catalog.py

+ 5 - 1
util/catalog.py

@@ -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())