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 pyaml_cs_oa/controlsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(
name: str,
prefix: str = "",
catalog: Catalog | None = None,
debug_level: str | None = None,
debug_level: str | int | None = None,
):
"""Create an ophyd-async control-system interface.

Expand All @@ -48,8 +48,8 @@ def __init__(
catalog : Catalog or None, optional
Catalog instance or catalog name used to resolve PyAML device keys.
If None specified a dynamic catalog is used.
debug_level : str or None, optional
Debug verbosity level.
debug_level : str | int | None, optional
Debug verbosity level. Such as INFO, DEBUG, WARNING, ERROR, CRITICAL. Or 10, 20, 30, 40, 50.
"""

super().__init__()
Expand Down
Loading