Skip to content

Commit

Permalink
hot fixes. fixed command register
Browse files Browse the repository at this point in the history
  • Loading branch information
jirhiker committed Sep 17, 2024
1 parent 62898b2 commit 9914561
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pychron/pyscripts/aqua_pyscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class AquaPyScript(ExtractionPyScript):
_runthread = None

def get_command_register(self):
cs = super(self).get_command_register()
cs = super().get_command_register()
return cs + list(command_register.commands.items())

@command_register
Expand Down
2 changes: 1 addition & 1 deletion pychron/pyscripts/laser_pyscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class LaserPyScript(ExtractionPyScript):
_task = None

def get_command_register(self):
cs = super(self).get_command_register()
cs = super().get_command_register()
return cs + list(command_register.commands.items())

@verbose_skip
Expand Down
2 changes: 1 addition & 1 deletion pychron/pyscripts/measurement/ngx_measurement_pyscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

class NGXMeasurementPyScript(MeasurementPyScript):
def get_command_register(self):
cs = super(self).get_command_register()
cs = super().get_command_register()
return cs + list(command_register.commands.items())


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

class QuaderaMeasurementPyScript(MeasurementPyScript):
def get_command_register(self):
cs = super(self).get_command_register()
cs = super().get_command_register()
return cs + list(command_register.commands.items())

@command_register
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

class ThermoMeasurementPyScript(MeasurementPyScript):
def get_command_register(self):
cs = super(self).get_command_register()
cs = super().get_command_register()
return cs + list(command_register.commands.items())

@verbose_skip
Expand Down
2 changes: 1 addition & 1 deletion pychron/pyscripts/measurement_pyscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def reset(self, arun):
self._reset()

def get_command_register(self):
cs = super(self).get_command_register()
cs = super().get_command_register()
return cs + list(command_register.commands.items())

def truncate(self, style=None):
Expand Down

0 comments on commit 9914561

Please sign in to comment.