From 130fabc727fec7672f486ca0ef62e85bb177c689 Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 28 Jul 2026 10:18:54 +0200 Subject: [PATCH] fix: remove typehint --- phoenix_bec/devices/unsupported_legacy/psi_detector_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phoenix_bec/devices/unsupported_legacy/psi_detector_base.py b/phoenix_bec/devices/unsupported_legacy/psi_detector_base.py index 1f76a4d..12a4b37 100644 --- a/phoenix_bec/devices/unsupported_legacy/psi_detector_base.py +++ b/phoenix_bec/devices/unsupported_legacy/psi_detector_base.py @@ -43,7 +43,7 @@ class CustomDetectorMixin: will allow the custom prepare class to access the parent device with all its signals. """ - def __init__(self, *_args, parent: T = None, **_kwargs) -> None: + def __init__(self, *_args, parent = None, **_kwargs) -> None: """ Initialize the custom prepare class.