Upsi. Implemented this in the wrong method.

This commit is contained in:
jupfi 2023-12-10 10:01:42 +01:00
parent 9844c0df0c
commit 9c17c99f53

View file

@ -28,14 +28,6 @@ class BaseSpectrometerModel(ModuleModel):
def get_setting(self):
return float(self.value)
def get_setting_by_name(self, name : str) -> "Setting":
for setting in self.settings:
if setting.name == name:
return setting
raise ValueError("Setting with name %s not found" % name)
class PulseParameter:
"""A pulse parameter is a value that can be different for each event in a pulse sequence.
E.g. the transmit pulse power or the phase of the transmit pulse.