Skip to content

Commit

Permalink
Remove unused argument
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBeiske committed Dec 14, 2023
1 parent a789f27 commit 260c85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ctapipe/reco/sklearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ class CrossValidator(Component):
default_value=1337, help="Random seed for splitting the training data."
).tag(config=True)

def __init__(self, model_component, overwrite=False, **kwargs):
def __init__(self, model_component, **kwargs):
super().__init__(**kwargs)
self.model_component = model_component
self.rng = np.random.default_rng(self.rng_seed)
Expand Down

0 comments on commit 260c85f

Please sign in to comment.