Skip to content

Commit

Permalink
Use non-muteable defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Oct 22, 2024
1 parent b325dfb commit fd93e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions audplot/core/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ def detection_error_tradeoff(
y: Sequence | pd.Series,
*,
error_rates: bool = False,
xlim: Sequence = [0.001, 0.5],
ylim: Sequence = [0.001, 0.5],
xlim: Sequence = (0.001, 0.5),
ylim: Sequence = (0.001, 0.5),
label: str = None,
ax: matplotlib.axes.Axes = None,
) -> Callable:
Expand Down

0 comments on commit fd93e79

Please sign in to comment.