From 93871aa7037fce2713ecb707c4dd08f3a2109901 Mon Sep 17 00:00:00 2001 From: Oliver Silvester Date: Thu, 14 Sep 2023 16:50:03 +0100 Subject: [PATCH] linting --- src/ophyd_async/core/_device/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ophyd_async/core/_device/device.py b/src/ophyd_async/core/_device/device.py index c3019edabb..ea300d19f8 100644 --- a/src/ophyd_async/core/_device/device.py +++ b/src/ophyd_async/core/_device/device.py @@ -25,7 +25,7 @@ def __init__(self, name: str = "") -> None: def name(self) -> str: """Return the name of the Device""" return self._name - + def children(self) -> Iterator[Tuple[str, Device]]: for attr_name, attr in self.__dict__.items(): if attr_name != "parent" and isinstance(attr, Device):