commit | 150b2199655e69a159a1b9cc8cf3f9732df8ecd6 | [log] [tgz] |
---|---|---|
author | kdanylov aka koder <koder.mail@gmail.com> | Sat Apr 01 16:53:01 2017 +0300 |
committer | kdanylov aka koder <koder.mail@gmail.com> | Sat Apr 01 16:53:01 2017 +0300 |
tree | 4d62c569bc2a1afbc8a2471c50ddf101352b5ab1 | |
parent | 0de02045db0cb519ec51f35a4d9afce920b361c4 [diff] [blame] |
bug fixes and add text report
diff --git a/wally/config.py b/wally/config.py index 2178d0c..add4df5 100644 --- a/wally/config.py +++ b/wally/config.py
@@ -1,4 +1,4 @@ -from typing import Any, Dict, Optional +from typing import Any, Dict, Optional, Set from .common_types import IStorable @@ -33,6 +33,7 @@ self.fuel = None # type: 'Config' self.test = None # type: 'Config' self.sensors = None # type: 'Config' + self.discovery = None # type: Set[str] self._dct.clear() self._dct.update(dct)