diff options
Diffstat (limited to 'smart_home/device.py')
| -rw-r--r-- | smart_home/device.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/smart_home/device.py b/smart_home/device.py index 27860c5..0953b8d 100644 --- a/smart_home/device.py +++ b/smart_home/device.py @@ -1,7 +1,8 @@ #!/usr/bin/env python3 import re -from typing import Any, List, Optional, Tuple +from typing import List, Optional + class Device(object): def __init__( @@ -24,6 +25,9 @@ class Device(object): def get_mac(self) -> str: return self.mac + def get_ip(self) -> str: + pass + def get_keywords(self) -> Optional[List[str]]: return self.kws |
