Skip to content

Commit

Permalink
prefer float values so fractions are not swallowed
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Nov 13, 2023
1 parent da00756 commit 4d7aac5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions activitysim/abm/models/disaggregate_accessibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class DisaggregateAccessibilityAnnotateSettings(PydanticReadable, extra="forbid"

class DisaggregateAccessibilitySettings(PydanticReadable, extra="forbid"):
suffixes: DisaggregateAccessibilitySuffixes = DisaggregateAccessibilitySuffixes()
ORIGIN_SAMPLE_SIZE: int | float = 0
DESTINATION_SAMPLE_SIZE: int | float = 0
ORIGIN_SAMPLE_SIZE: float | int = 0
DESTINATION_SAMPLE_SIZE: float | int = 0
BASE_RANDOM_SEED: int = 0
add_size_tables: bool = True
zone_id_names: dict[str, str] = {"index_col": "zone_id"}
Expand Down

0 comments on commit 4d7aac5

Please sign in to comment.