Skip to content

Commit 2a13368

Browse files
committed
Fix FEIMicroscope's getStagePosition docstring that suggested alpha, beta are not numbers
1 parent 2899eef commit 2a13368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/instamatic/microscope/interface/fei_microscope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def getStageSpeed(self):
149149
return self.tom.Stage.Speed
150150

151151
def getStagePosition(self) -> StagePositionTuple:
152-
"""Return numbers in nanometers (used to be microns), angles in deg."""
152+
"""Return x, y, z in nanometers (used to be microns), angles in deg."""
153153
return StagePositionTuple(
154154
round(self.stage.Position.X * 1e9),
155155
round(self.stage.Position.Y * 1e9),

0 commit comments

Comments
 (0)