updating to latest
This commit is contained in:
16
custom_components/hacs/helpers/properties/__init__.py
Normal file
16
custom_components/hacs/helpers/properties/__init__.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# pylint: disable=missing-class-docstring,missing-module-docstring,missing-function-docstring,no-member
|
||||
from custom_components.hacs.helpers.properties.can_be_installed import (
|
||||
RepositoryPropertyCanBeInstalled,
|
||||
)
|
||||
from custom_components.hacs.helpers.properties.custom import RepositoryPropertyCustom
|
||||
from custom_components.hacs.helpers.properties.pending_update import (
|
||||
RepositoryPropertyPendingUpdate,
|
||||
)
|
||||
|
||||
|
||||
class RepositoryHelperProperties(
|
||||
RepositoryPropertyPendingUpdate,
|
||||
RepositoryPropertyCustom,
|
||||
RepositoryPropertyCanBeInstalled,
|
||||
):
|
||||
pass
|
||||
Reference in New Issue
Block a user