From 29ee1f98654a689e9cab76b0c7c68428faa43a8c Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Fri, 29 Oct 2021 10:33:07 -0700 Subject: Adds Arper, cleans up other stuff. --- smart_home/cameras.py | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) (limited to 'smart_home/cameras.py') diff --git a/smart_home/cameras.py b/smart_home/cameras.py index 963f54e..40850a9 100644 --- a/smart_home/cameras.py +++ b/smart_home/cameras.py @@ -2,25 +2,13 @@ """Utilities for dealing with the webcams.""" -from abc import abstractmethod -import datetime -import json import logging -import os -import re -import subprocess -import sys -from typing import Any, Dict, List, Optional, Set - -import argparse_utils -import config -import logging_utils + import smart_home.device as dev -from google_assistant import ask_google, GoogleResponse -from decorator_utils import timeout, memoized logger = logging.getLogger(__name__) + class BaseCamera(dev.Device): camera_mapping = { 'cabin_drivewaycam': 'cabin_driveway', -- cgit v1.3