File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change 11"""Store client for supervisor."""
22
3- import re
4-
53from .client import _SupervisorComponentClient
64from .const import ResponseType
75from .models .addons import (
1412 StoreInfo ,
1513)
1614
17- RE_ADDON_UNAVAILABLE_ARCHITECTURE = re .compile (
18- r"^Add\-on (?P<addon>\w+) not supported on this platform, "
19- r"supported architectures: (?P<architectures>.*)$"
20- )
21- RE_ADDON_UNAVAILABLE_MACHINE_TYPE = re .compile (
22- r"^Add\-on (?P<addon>\w+) not supported on this machine, "
23- r"supported machine types: (?P<machine_types>.*)$"
24- )
25- RE_ADDON_UNAVAILABLE_HOME_ASSISTANT = re .compile (
26- r"^Add\-on (?P<addon>\w+) not supported on this system, "
27- r"requires Home Assistant version (?P<version>\S+) or greater$"
28- )
29-
3015
3116class StoreClient (_SupervisorComponentClient ):
3217 """Handles store access in Supervisor."""
You can’t perform that action at this time.
0 commit comments