File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change 11"""Store client for supervisor."""
22
3- import re
43from typing import Any
54
65from .client import _SupervisorComponentClient
1615 StoreInfo ,
1716)
1817
19- RE_ADDON_UNAVAILABLE_ARCHITECTURE = re .compile (
20- r"^Add\-on (?P<addon>\w+) not supported on this platform, "
21- r"supported architectures: (?P<architectures>.*)$"
22- )
23- RE_ADDON_UNAVAILABLE_MACHINE_TYPE = re .compile (
24- r"^Add\-on (?P<addon>\w+) not supported on this machine, "
25- r"supported machine types: (?P<machine_types>.*)$"
26- )
27- RE_ADDON_UNAVAILABLE_HOME_ASSISTANT = re .compile (
28- r"^Add\-on (?P<addon>\w+) not supported on this system, "
29- r"requires Home Assistant version (?P<version>\S+) or greater$"
30- )
31-
3218
3319class StoreClient (_SupervisorComponentClient ):
3420 """Handles store access in Supervisor."""
You can’t perform that action at this time.
0 commit comments