ui-update: service manager ui

This commit is contained in:
Benjamin Labrecque
2026-07-09 14:12:17 +02:00
parent fb4e5d3a35
commit 2810ced013
+2 -2
View File
@@ -1,6 +1,6 @@
import re
import xml.etree.ElementTree as ET
from typing import ClassVar
from typing import Any, ClassVar
import yaml
from pydantic import BaseModel, ConfigDict, field_validator
@@ -137,7 +137,7 @@ class ServiceManagerUI(BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True)
config_path: ClassVar[str] = str(SERVICE_MANAGER_UI_FILENAME)
tree: ET.ElementTree
tree: Any
@classmethod
def read_from_file(cls) -> "ServiceManagerUI":