Skip to content

Commit 91025be

Browse files
committed
Revert change to use public property in ClockLine.add_device internals
1 parent 5b580ad commit 91025be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labscript/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def add_device(self, device):
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:
7676
self._minimum_clock_high_time = max(
77-
device.minimum_clock_high_time, self.minimum_clock_high_time
77+
device.minimum_clock_high_time, self._minimum_clock_high_time
7878
)
7979

8080
@property

0 commit comments

Comments
 (0)