Skip to content
Snippets Groups Projects
Commit 72df8622 authored by Karim Ahmed's avatar Karim Ahmed
Browse files

remove unneeded noqa

parent 5be12d04
No related branches found
No related tags found
1 merge request!712[Gotthard2][Dark] Process dark constants starting the 21st pulse
...@@ -15,23 +15,24 @@ class Gotthard2Ctrl(): ...@@ -15,23 +15,24 @@ class Gotthard2Ctrl():
self.ctrl_src = ctrl_src self.ctrl_src = ctrl_src
def get_bias_voltage(self): def get_bias_voltage(self):
return(self.run_dc[self.ctrl_src, "highVoltageMax"].as_single_value()) return self.run_dc[self.ctrl_src, "highVoltageMax"].as_single_value()
def get_exposure_time(self): def get_exposure_time(self):
return(round( return round(
self.run_dc[self.ctrl_src, "exposureTime"].as_single_value(), 4)) self.run_dc[self.ctrl_src, "exposureTime"].as_single_value(), 4)
def get_exposure_period(self): def get_exposure_period(self):
return(round( return round(
self.run_dc[self.ctrl_src, "exposurePeriod"].as_single_value(), 4)) # noqa self.run_dc[self.ctrl_src, "exposurePeriod"].as_single_value(), 4)
def get_acquisition_rate(self): def get_acquisition_rate(self):
try: try:
return(float(self.run_dc.get_run_value(self.ctrl_src, "acquisitionRate"))) # noqa return float(
self.run_dc.get_run_value(self.ctrl_src, "acquisitionRate"))
except extra_data.PropertyNameError: except extra_data.PropertyNameError:
pass pass
def get_single_photon(self): def get_single_photon(self):
if "singlePhoton.value" in self.run_dc.keys_for_source(self.ctrl_src): # noqa if "singlePhoton.value" in self.run_dc.keys_for_source(self.ctrl_src):
return( return bool(
bool(self.run_dc[self.ctrl_src, "singlePhoton"].as_single_value())) # noqa self.run_dc[self.ctrl_src, "singlePhoton"].as_single_value())
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