Skip to content

Commit

Permalink
format with black
Browse files Browse the repository at this point in the history
  • Loading branch information
bwentl committed Feb 6, 2024
1 parent e62f28b commit 688539e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion activitysim/abm/models/joint_tour_participation.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,8 @@ def joint_tour_participation(
# its value depends on whether the candidate's 'participant_id' is in the joint_tour_participant index
survey_participants_df = estimator.get_survey_table("joint_tour_participants")
participate = pd.Series(
choices.index.isin(survey_participants_df.participant_id), index=choices.index
choices.index.isin(survey_participants_df.participant_id),
index=choices.index,
)

# but estimation software wants to know the choices value (alternative index)
Expand Down

0 comments on commit 688539e

Please sign in to comment.