Skip to content

Commit

Permalink
blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensle committed Mar 8, 2024
1 parent 3af9202 commit ed20f51
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion activitysim/abm/models/auto_ownership.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@
import pandas as pd
from pydantic import validator

from activitysim.core import config, expressions, estimation, simulate, tracing, workflow
from activitysim.core import (
config,
expressions,
estimation,
simulate,
tracing,
workflow,
)
from activitysim.core.configuration.base import PreprocessorSettings, PydanticReadable
from activitysim.core.configuration.logit import LogitComponentSettings
from .util import estimation, annotate
Expand Down
16 changes: 8 additions & 8 deletions activitysim/abm/models/util/annotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@


def annotate_households(
state: workflow.State,
model_settings: dict | PydanticBase,
trace_label: str,
locals_dict: dict | None = None,
state: workflow.State,
model_settings: dict | PydanticBase,
trace_label: str,
locals_dict: dict | None = None,
):
"""
Add columns to the households table in the pipeline according to spec.
Expand All @@ -45,10 +45,10 @@ def annotate_households(


def annotate_persons(
state: workflow.State,
model_settings: dict | PydanticBase,
trace_label: str,
locals_dict: dict | None = None,
state: workflow.State,
model_settings: dict | PydanticBase,
trace_label: str,
locals_dict: dict | None = None,
):
"""
Add columns to the persons table in the pipeline according to spec.
Expand Down

0 comments on commit ed20f51

Please sign in to comment.