Skip to content

Commit c832650

Browse files
Make home function not abstract with default implementation
1 parent 746e9b6 commit c832650

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pystages/stage.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,6 @@ def maximums(self, value: Optional[Vector]):
184184
self.check_dimension(value)
185185
self._maximums = value
186186

187-
@abstractmethod
188187
def home(self):
189188
"""Triggers a non-blocking homing command."""
190-
...
189+
self.position = Vector(dim=self.num_axis)

0 commit comments

Comments
 (0)