Skip to content
Snippets Groups Projects
Commit 2fbfe02d authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Add self. to is_BLAH_allowed calls

parent 758c9f14
No related branches found
No related tags found
No related merge requests found
...@@ -319,7 +319,7 @@ class StatsCrosslet(Device): ...@@ -319,7 +319,7 @@ class StatsCrosslet(Device):
:return:None :return:None
""" """
if is_start_acquisition_allowed() is True: if self.is_start_acquisition_allowed() is True:
self.data_acquisition_is_active = True self.data_acquisition_is_active = True
# PROTECTED REGION END # // StatsCrosslet.start_acquisition # PROTECTED REGION END # // StatsCrosslet.start_acquisition
...@@ -338,7 +338,7 @@ class StatsCrosslet(Device): ...@@ -338,7 +338,7 @@ class StatsCrosslet(Device):
:return:None :return:None
""" """
if is_stop_acquisition_allowed() is True: if self.is_stop_acquisition_allowed() is True:
self.data_acquisition_is_active = False self.data_acquisition_is_active = False
# PROTECTED REGION END # // StatsCrosslet.stop_acquisition # PROTECTED REGION END # // StatsCrosslet.stop_acquisition
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment