comparison libervia/backend/plugins/plugin_misc_app_manager/models.py @ 4270:0d7bb4df2343

Reformatted code base using black.
author Goffi <goffi@goffi.org>
date Wed, 19 Jun 2024 18:44:57 +0200
parents 4aa62767f501
children
comparison
equal deleted inserted replaced
4269:64a85ce8be70 4270:0d7bb4df2343
25 25
26 class AppManagerBackend(abc.ABC): 26 class AppManagerBackend(abc.ABC):
27 """Abstract class for App Manager.""" 27 """Abstract class for App Manager."""
28 28
29 name: str 29 name: str
30 discover_path: Path|None = None 30 discover_path: Path | None = None
31 31
32 def __init__(self, host) -> None: 32 def __init__(self, host) -> None:
33 """Initialize the App Manager. 33 """Initialize the App Manager.
34 34
35 @param host: The host object. 35 @param host: The host object.