Skip to content

Commit 09b6249

Browse files
committed
Removed unneeded return
1 parent 26344e6 commit 09b6249

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labscript_utils/qtwidgets/digitaloutput.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def state(self,state):
9494

9595
class InvertedDigitalOutput(DigitalOutput):
9696
def set_DO(self,DO,notify_old_DO=True,notify_new_DO=True,inverted=True):
97-
return DigitalOutput.set_DO(self, DO, notify_old_DO, notify_new_DO, inverted)
97+
DigitalOutput.set_DO(self, DO, notify_old_DO, notify_new_DO, inverted)
9898

9999
@property
100100
def state(self):

0 commit comments

Comments
 (0)