diff options
| author | Scott Gasch <[email protected]> | 2022-02-10 14:10:48 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-10 14:10:48 -0800 |
| commit | f2600f30801c849fc1d139386e3ddc3c9eb43e30 (patch) | |
| tree | 74c5173bf47322bcfbbd2985adfb54741cf3c4cc /smart_home/device_utils.py | |
| parent | 415c2c91972ea5a574dce166ec609926dcf19d73 (diff) | |
More cleanup.
Diffstat (limited to 'smart_home/device_utils.py')
| -rw-r--r-- | smart_home/device_utils.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/smart_home/device_utils.py b/smart_home/device_utils.py index f79c734..40a7b70 100644 --- a/smart_home/device_utils.py +++ b/smart_home/device_utils.py @@ -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__) |
