More changes for 1.12 (#483)

* Print error when ESP32 BLE tracker used together with beacon

* Update

* Enable PSRAM

* Fix test
This commit is contained in:
Otto Winter
2019-03-17 16:04:49 +01:00
parent 92a4ee5652
commit 114ebf9fe1
4 changed files with 11 additions and 6 deletions
+4
View File
@@ -159,3 +159,7 @@ class _Schema(vol.Schema):
return out
return validate_mapping
def extend(self, schema, required=None, extra=None):
ret = vol.Schema.extend(self, schema, required=required, extra=extra)
return _Schema(ret.schema, required=ret.required, extra=ret.extra)