Skip to content

Commit e77eb9b

Browse files
committed
Fix dfmux builder collation tolerance
1 parent 7b7fdc8 commit e77eb9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dfmux/src/DfMuxBuilder.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ PYBINDINGS("dfmux", scope)
241241
"DfMuxBuilder will filter for only boards with serial numbers "
242242
"in the list.")
243243
.def(py::init<int, int64_t>(), py::arg("boards"),
244-
py::arg("collation_tolerance")=int(10*G3Units::ms))
244+
py::arg("collation_tolerance")=int(10*G3Units::us))
245245
.def(py::init<std::vector<int>, int64_t>(), py::arg("boards"),
246-
py::arg("collation_tolerance")=int(10*G3Units::ms))
246+
py::arg("collation_tolerance")=int(10*G3Units::us))
247247
;
248248
}
249249

0 commit comments

Comments
 (0)