X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=smart_home%2Fdevice_utils.py;h=0c0ca989b80898735a675ddb662f2a372dd28245;hb=02302bbd9363facb59c4df2c1f4013087702cfa6;hp=f79c734be49e46d5f56db1528deb49e2d66f15e8;hpb=e5da1fa6bab9ea6bf4394facbb29f13cdc3daf9a;p=python_utils.git diff --git a/smart_home/device_utils.py b/smart_home/device_utils.py index f79c734..0c0ca98 100644 --- a/smart_home/device_utils.py +++ b/smart_home/device_utils.py @@ -1,12 +1,13 @@ #!/usr/bin/env python3 +# © Copyright 2021-2022, Scott Gasch + +"""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__)