Skip to content

Commit

Permalink
fix: add missing star for keyword arguments unpacking
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Feb 18, 2024
1 parent ece86c6 commit 9660833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cobra/sampling/optgp.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __init__(
**kwargs,
) -> None:
"""Initialize a new OptGPSampler."""
super().__init__(model, thinning, nproj=nproj, seed=seed, *kwargs)
super().__init__(model, thinning, nproj=nproj, seed=seed, **kwargs)
self.generate_fva_warmup()

if processes is None:
Expand Down

0 comments on commit 9660833

Please sign in to comment.