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