Revert "Add __str__ member"
This reverts commit 2232a91f2e3f8cf449f243d5c4eb8f51d1cfc9e0.
This commit is contained in:
parent
8f39459234
commit
4c2e12eca1
@ -43,7 +43,3 @@ class LedControlDevice(ABC):
|
|||||||
None.
|
None.
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
@abstractmethod
|
|
||||||
def __str__(self):
|
|
||||||
pass
|
|
@ -12,6 +12,3 @@ class TestLedControlDevice(LedControlDevice):
|
|||||||
|
|
||||||
def set_level(self, level: int):
|
def set_level(self, level: int):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return "Dummy Led Controller"
|
|
@ -45,6 +45,3 @@ class DC2200(LedControlDevice):
|
|||||||
rm = pyvisa.ResourceManager()
|
rm = pyvisa.ResourceManager()
|
||||||
instr = rm.open_resource(name)
|
instr = rm.open_resource(name)
|
||||||
return DC2200(instr)
|
return DC2200(instr)
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return "Thorlabs DC2200"
|
|
||||||
|
@ -45,9 +45,6 @@ class LEDD1B(LedControlDevice):
|
|||||||
else:
|
else:
|
||||||
raise ValueError(f"LEDD1B Led controller can only set 0% or 100%")
|
raise ValueError(f"LEDD1B Led controller can only set 0% or 100%")
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return "Thorlabs LEDD1B"
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
led = LEDD1B()
|
led = LEDD1B()
|
@ -51,6 +51,3 @@ class VoltageMeasurementDevice(ABC):
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
@abstractmethod
|
|
||||||
def __str__(self):
|
|
||||||
pass
|
|
@ -256,5 +256,3 @@ class Keithley2700(VoltageMeasurementDevice):
|
|||||||
instr = rm.open_resource(name)
|
instr = rm.open_resource(name)
|
||||||
return Keithley2700(instr)
|
return Keithley2700(instr)
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return "Keithley 2700"
|
|
||||||
|
@ -52,6 +52,3 @@ class TestVoltageMeasurementDevice(VoltageMeasurementDevice):
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def __str__(self):
|
|
||||||
return "Simulated Voltage Measurement Device"
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user