Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
simplymathematics committed Aug 13, 2024
1 parent 40594bb commit baee84d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deckard/base/model/sklearn_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ def __call__(self, model):
):
model.model = Pipeline([("model", model.model)])
elif str(type(model)).startswith("art.") and isinstance(
model.model, Pipeline
model.model,
Pipeline,
):
model.model.steps.insert(-2, [stage, model.model])
else:
Expand Down

0 comments on commit baee84d

Please sign in to comment.