Skip to content

Commit

Permalink
remove the abstract decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
FLorial Jean Baptiste committed Jan 4, 2024
1 parent 8564aca commit 5a24596
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions mxcubecore/HardwareObjects/abstract/AbstractSampleChanger.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,6 +679,13 @@ def _resolve_component(self, component):
return comp
return component

def _mount_from_harvester(self):
"""
Mount from Harvester or from default dewar
Returns: (Bool) true Mount from Harvester
"""
return

# ######################## ABSTRACTS #########################

@abc.abstractmethod
Expand Down Expand Up @@ -716,10 +723,6 @@ def _do_unload(self, sample_slot=None):
def _do_reset(self):
return

@abc.abstractmethod
def _mount_from_harvester(self):
return

# ######################## PROTECTED #########################

def _execute_task(self, task, wait, method, *args):
Expand Down

0 comments on commit 5a24596

Please sign in to comment.