More cleanup.
[python_utils.git] / smart_home / device_utils.py
index f79c734be49e46d5f56db1528deb49e2d66f15e8..40a7b70ed3d357797fa979bd1d0f8554abc0d789 100644 (file)
@@ -1,12 +1,11 @@
 #!/usr/bin/env python3
 
+"""General utility functions involving smart home devices."""
+
 import logging
 from typing import Any
 
-import smart_home.cameras as cameras
-import smart_home.chromecasts as chromecasts
-import smart_home.lights as lights
-import smart_home.outlets as outlets
+from smart_home import cameras, chromecasts, lights, outlets
 
 logger = logging.getLogger(__name__)