mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
the manager is not supposed to be null
This commit is contained in:
parent
7d0d82ae01
commit
d4d2da334b
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ class AppResource:
|
|||
type: str = ""
|
||||
default_properties: Dict[str, Any] = {}
|
||||
|
||||
def __init__(self, properties: Dict[str, Any], app: str, manager=None):
|
||||
def __init__(self, properties: Dict[str, Any], app: str, manager: AppResourceManager):
|
||||
self.app = app
|
||||
self.manager = manager
|
||||
properties = self.default_properties | properties
|
||||
|
|
Loading…
Add table
Reference in a new issue