Skip to content

Commit

Permalink
new versions of toolz dont seem to have a compatibility component, bu…
Browse files Browse the repository at this point in the history
…t zip is part of the standard (#349)
  • Loading branch information
jamiecook authored Oct 20, 2020
1 parent bd55f26 commit 975d2b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activitysim/core/orca.py
Original file line number Diff line number Diff line change
Expand Up @@ -982,8 +982,8 @@ def _collect_variables(names, expressions=None):
expressions = []
offset = len(names) - len(expressions)
labels_map = dict(tz.concatv(
tz.compatibility.zip(names[:offset], names[:offset]),
tz.compatibility.zip(names[offset:], expressions)))
zip(names[:offset], names[:offset]),
zip(names[offset:], expressions)))

all_variables = tz.merge(_INJECTABLES, _TABLES)
variables = {}
Expand Down

0 comments on commit 975d2b2

Please sign in to comment.