Skip to content

Commit 96b3dd3

Browse files
committed
Revert change made that tried to write to a property
1 parent 6d4535b commit 96b3dd3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

labscript/core.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ def add_device(self, device):
7373
self._clock_limit = device.clock_limit
7474
# Update minimum clock high time if this new device requires a longer high time.
7575
if getattr(device, 'minimum_clock_high_time', None) is not None:
76-
self.minimum_clock_high_time = max(
76+
self._minimum_clock_high_time = max(
7777
device.minimum_clock_high_time, self.minimum_clock_high_time
7878
)
79+
7980
@property
8081
def clock_limit(self):
8182
"""float: Clock limit for this line, typically set by speed of child Intermediate Devices."""

0 commit comments

Comments
 (0)