Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
HLasse committed May 17, 2024
1 parent a80a9c2 commit 5488e2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/timeseriesflattener/v1/feature_specs/group_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def create_combinations(self) -> List[OutcomeSpec]:
]


GroupSpec = PredictorGroupSpec | OutcomeGroupSpec
GroupSpec = Union[PredictorGroupSpec, OutcomeGroupSpec]


def create_feature_combinations_from_dict(
Expand Down
4 changes: 2 additions & 2 deletions src/timeseriesflattener/v1/feature_specs/single_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,5 +192,5 @@ def get_output_col_name(self) -> str:
)


TemporalSpec = PredictorSpec | OutcomeSpec
AnySpec = StaticSpec | TemporalSpec
TemporalSpec = Union[PredictorSpec, OutcomeSpec]
AnySpec = Union[StaticSpec, TemporalSpec]

0 comments on commit 5488e2e

Please sign in to comment.