Skip to content

Commit 7e75ade

Browse files
committed
fixed coverage
1 parent 22e5a55 commit 7e75ade

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stumpy/sdp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def __init__(self, max_n=2**20, real_dtype="float64"):
201201
"float64": "complex128",
202202
"longdouble": "clongdouble",
203203
}
204-
if real_dtype not in ["float64", "longdouble"]:
204+
if real_dtype not in ["float64", "longdouble"]: # pragma: no cover
205205
raise ValueError(
206206
f"Invalid real_dtype: {real_dtype}. Must be 'float64' or 'longdouble'."
207207
)

0 commit comments

Comments
 (0)