Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
olliesilvester committed Sep 14, 2023
1 parent 8d207fa commit 93871aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ophyd_async/core/_device/device.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 93871aa

Please sign in to comment.