Skip to content

Commit d5829cc

Browse files
Merged in cbillington/labscript_devices/bugfix2 (pull request #53)
Trivial bugfix for NameError in PulseBlasterUSB Approved-by: Philip Starkey <threepineapples@gmail.com>
2 parents 3f1d488 + 8848034 commit d5829cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PulseBlasterUSB.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class PulseblasterUSBTab(Pulseblaster_No_DDS_Tab):
3131
num_DO = 24
3232
def __init__(self,*args,**kwargs):
3333
self.device_worker_class = PulseblasterUSBWorker
34-
pulseblaster_no_dds.__init__(self,*args,**kwargs)
34+
Pulseblaster_No_DDS_Tab.__init__(self,*args,**kwargs)
3535

3636
@BLACS_worker
3737
class PulseblasterUSBWorker(PulseblasterNoDDSWorker):

0 commit comments

Comments
 (0)