diff --git a/artiq/compiler/iodelay.py b/artiq/compiler/iodelay.py index 44b447325..3941ea22e 100644 --- a/artiq/compiler/iodelay.py +++ b/artiq/compiler/iodelay.py @@ -4,6 +4,8 @@ the statically inferred RTIO delay arising from executing a function. """ +from functools import reduce + class Expr: def __add__(lhs, rhs): assert isinstance(rhs, Expr)