diff --git a/activitysim/abm/models/work_from_home.py b/activitysim/abm/models/work_from_home.py index d12eb5dd14..29c13aa1e6 100755 --- a/activitysim/abm/models/work_from_home.py +++ b/activitysim/abm/models/work_from_home.py @@ -30,7 +30,7 @@ class WorkFromHomeSettings(LogitComponentSettings, extra="forbid"): """Setting for the preprocessor.""" WORK_FROM_HOME_ALT: int - """ """ # TODO + """Value that specify if the person is working from home""" # TODO WORK_FROM_HOME_ITERATIONS: int | None = None """Setting to specify the number of iterations.""" diff --git a/docs/dev-guide/components/write_trip_matrices.md b/docs/dev-guide/components/write_trip_matrices.md index 0ecf4f1aeb..d0c2198413 100644 --- a/docs/dev-guide/components/write_trip_matrices.md +++ b/docs/dev-guide/components/write_trip_matrices.md @@ -9,8 +9,8 @@ Write open matrix (OMX) trip matrices for assignment. Reads the trips table pos to code additional data fields, with one data fields for each matrix specified. The matrices are scaled by a household level expansion factor, which is the household sample rate by default, which is calculated when households are read in at the beginning of a model run. The main interface to write trip -matrices is the [write_trip_matrices](activitysim.abm.models.trip_matrices.write_trip_matrices) function. This function -is registered as an Inject step in the example Pipeline. +matrices is the [write_trip_matrices](activitysim.abm.models.trip_matrices.write_trip_matrices) function. +This function is registered as an Inject step in the example Pipeline. ## Structure