Revert "Add __str__ member"

This reverts commit 2232a91f2e3f8cf449f243d5c4eb8f51d1cfc9e0.
This commit is contained in:
CPD 2025-03-12 16:44:50 +01:00
parent 8f39459234
commit 4c2e12eca1
7 changed files with 1 additions and 22 deletions

View File

@ -42,8 +42,4 @@ class LedControlDevice(ABC):
-------
None.
"""
pass
@abstractmethod
def __str__(self):
pass

View File

@ -12,6 +12,3 @@ class TestLedControlDevice(LedControlDevice):
def set_level(self, level: int):
pass
def __str__(self):
return "Dummy Led Controller"

View File

@ -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)

View File

@ -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()

View File

@ -50,7 +50,4 @@ class VoltageMeasurementDevice(ABC):
None.
"""
pass
@abstractmethod
def __str__(self):
pass

View File

@ -256,5 +256,3 @@ class Keithley2700(VoltageMeasurementDevice):
instr = rm.open_resource(name)
return Keithley2700(instr)
def __str__(self):
return "Keithley 2700"

View File

@ -52,6 +52,3 @@ class TestVoltageMeasurementDevice(VoltageMeasurementDevice):
"""
pass
def __str__(self):
return "Simulated Voltage Measurement Device"