From 78b59926eea43e4f5db36eee9ac693e6ab5fd1bc Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Mon, 25 Sep 2023 09:05:58 -0400 Subject: [PATCH] minor updates to Position docs --- pymmcore/__init__.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pymmcore/__init__.pyi b/pymmcore/__init__.pyi index ce1a47d..54a5a18 100644 --- a/pymmcore/__init__.pyi +++ b/pymmcore/__init__.pyi @@ -548,7 +548,7 @@ class CMMCore: """Returns the pixel size in um for the requested pixel size group""" @overload def getPosition(self) -> float: - """Returns the current position of the stage in microns.""" + """Returns the current position of the current FocusDevice in microns.""" @overload def getPosition(self, stageLabel: str) -> float: """Returns the current position of the stage in microns.""" @@ -949,7 +949,7 @@ class CMMCore: configuration preset.""" @overload def setPosition(self, position: float) -> None: - """Sets the position of the stage in microns.""" + """Sets the position of the current FocusDevice in microns.""" @overload def setPosition(self, stageLabel: str, position: float) -> None: """Sets the position of the stage in microns."""