Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tango/pyaml/controlsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class ConfigModel(BaseModel):
Name of the control system.
tango_host : str
Tango host URL. Default is the TANGO_HOST variable.
debug_level : int
Debug verbosity level.
debug_level : str | int | None
Debug verbosity level. Such as INFO, DEBUG, WARNING, ERROR, CRITICAL. Or 10, 20, 30, 40, 50.
scalar_aggregator : str
Aggregator module for scalar values. If none specified, writings and readings of sclar value are serialized.
vector_aggregator : str
Expand All @@ -33,7 +33,7 @@ class ConfigModel(BaseModel):

name: str
tango_host: str | None = None
debug_level: str = None
debug_level: str | int | None = None
lazy_devices: bool = True
scalar_aggregator: str | None = "tango.pyaml.multi_attribute"
vector_aggregator: str | None = None
Expand Down
Loading