Skip to content

Commit

Permalink
strict zip
Browse files Browse the repository at this point in the history
  • Loading branch information
cutoffthetop committed Jan 27, 2025
1 parent f2e4de2 commit 08a4502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mex/common/sinks/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def load(
) -> Generator[Identifier, None, None]:
"""Load models to multiple sinks simultaneously."""
for sink, model_gen in zip(
self._sinks, tee(models, len(self._sinks)), strict=False
self._sinks, tee(models, len(self._sinks)), strict=True
):
yield from sink.load(model_gen)

Expand Down

0 comments on commit 08a4502

Please sign in to comment.