You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseLabscriptError('The pseudoclock of the DummyPseudoclock %s only supports 1 clockline, which is automatically created. Please use the clockline located at %s.clockline'%(self.parent_device.name, self.parent_device.name))
27
+
Pseudoclock.add_device(self, device)
28
+
else:
29
+
raiseLabscriptError('You have connected %s to %s (the Pseudoclock of %s), but %s only supports children that are ClockLines. Please connect your device to %s.clockline instead.'%(device.name, self.name, self.parent_device.name, self.name, self.parent_device.name))
raiseLabscriptError('The %s %s automatically creates a Pseudoclock because it only supports one. '%(self.description, self.name) +
71
+
'Instead of instantiating your own Pseudoclock object, please use the internal'+
72
+
' one stored in %s.pseudoclock'%self.name)
73
+
else:
74
+
raiseLabscriptError('You have connected %s (class %s) to %s, but %s does not support children with that class.'%(device.name, device.__class__, self.name, self.name))
0 commit comments