Skip to content

Commit

Permalink
Merge commit '0e23e8142300811fe1e592f2526e6e602029fc9c' into preview
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Apr 18, 2024
2 parents 5ac2621 + 0e23e81 commit 539a8a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/core_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ jobs:
matrix:
region:
- prototype_mtc
- prototype_arc
- placeholder_psrc
- prototype_marin
- prototype_mtc_extended
Expand Down
6 changes: 2 additions & 4 deletions activitysim/abm/models/transit_pass_subsidy.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,8 @@ def transit_pass_subsidy(
)

filter_col = model_settings.CHOOSER_FILTER_COLUMN_NAME
if filter_col is None:
choosers = persons_merged
else:
choosers = persons_merged[persons_merged[filter_col]]
if filter_col is not None:
choosers = choosers[choosers[filter_col]]
logger.info("Running %s with %d persons", trace_label, len(choosers))

model_spec = state.filesystem.read_model_spec(model_settings.SPEC)
Expand Down

0 comments on commit 539a8a1

Please sign in to comment.