Skip to content

Commit

Permalink
assert allowed in TestingIOC as it's only for static type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
kivel committed Jan 10, 2025
1 parent adbc2b2 commit 90a6839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ophyd_async/epics/testing/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def start(self):
stderr=subprocess.STDOUT,
universal_newlines=True,
)
assert self._process.stdout
assert self._process.stdout # noqa: S101 # this is to make Pylance happy
start_time = time.monotonic()
while "iocRun: All initialization complete" not in self.output:
if time.monotonic() - start_time > 10:
Expand Down

0 comments on commit 90a6839

Please sign in to comment.