Skip to content

Commit ffbba5c

Browse files
committed
blacken
1 parent 078a3e9 commit ffbba5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

activitysim/abm/models/disaggregate_accessibility.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,9 @@ def zone_sampler(self):
437437
]
438438

439439
# Need to make sure we sample from TAZs that still exist in the maz_candidates
440-
taz_candidates = taz_candidates[taz_candidates.index.isin(maz_candidates.TAZ)]
440+
taz_candidates = taz_candidates[
441+
taz_candidates.index.isin(maz_candidates.TAZ)
442+
]
441443

442444
# Calculate the remaining samples to collect
443445
n_samples_remaining = n_samples - len(maz_sample_idx)

0 commit comments

Comments
 (0)