From 3812e9053a343d1ad9ef4ed1e4c5d6e4377a571e Mon Sep 17 00:00:00 2001 From: Joe Knapper Date: Fri, 26 Sep 2025 17:16:55 +0100 Subject: [PATCH] Docstring fix --- .../things/camera/simulation.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/openflexure_microscope_server/things/camera/simulation.py b/src/openflexure_microscope_server/things/camera/simulation.py index 6dcb5cf6..032ee31c 100644 --- a/src/openflexure_microscope_server/things/camera/simulation.py +++ b/src/openflexure_microscope_server/things/camera/simulation.py @@ -336,8 +336,8 @@ class SimulatedCamera(BaseCamera): It's likely to be highly inefficient - raw and/or uncompressed captures using binary image formats will be added in due course. - :param main_resolution: Currently ignored, this argument exists to ensure consistent API across camera Things. - :param buffer_count: Currently ignored, this argument exists to ensure consistent API across camera Things. + :param stream_name: Currently ignored, this argument exists to ensure consistent API across camera Things. + :param wait: Currently ignored, this argument exists to ensure consistent API across camera Things. """ if wait is not None: LOGGER.warning("Simulation camera has no wait option. Use None.") @@ -353,8 +353,8 @@ class SimulatedCamera(BaseCamera): It is used for capture to memory. - :param main_resolution: Currently ignored, this argument exists to ensure consistent API across camera Things. - :param buffer_count: Currently ignored, this argument exists to ensure consistent API across camera Things. + :param stream_name: Currently ignored, this argument exists to ensure consistent API across camera Things. + :param wait: Currently ignored, this argument exists to ensure consistent API across camera Things. """ if wait is not None: LOGGER.warning("Simulation camera has no wait option. Use None.")