Skip to content

Commit

Permalink
Fix: do not propagate kwargs to super().__init__ of KerasBaseEstimator
Browse files Browse the repository at this point in the history
  • Loading branch information
RollerKnobster committed Jun 25, 2024
1 parent ba15f75 commit 17ad386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/gordo/serializer/test_serializer_from_definition.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,4 +278,4 @@ def _verify_pipe(self, pipe, model, model_kind):
# STEP 4 TEST: Finally, the last step should be a KerasModel
step4 = pipe.steps[3][1]
self.assertIsInstance(step4, model)
self.assertTrue(step4._kind, model_kind)
self.assertTrue(step4.kind, model_kind)

0 comments on commit 17ad386

Please sign in to comment.