Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/ActivitySim/activitysim
Browse files Browse the repository at this point in the history
…into develop
  • Loading branch information
toliwaga committed Oct 23, 2020
2 parents ed201df + 9bd85ac commit df28db7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion activitysim/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ActivitySim
# See full license in LICENSE.txt.

__version__ = '0.9.5.1'
__version__ = '0.9.5.2'
__doc__ = 'Activity-Based Travel Modeling'
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 df28db7

Please sign in to comment.