Skip to content

Commit f753c6b

Browse files
Fix typo
Co-authored-by: Michael Osthege <[email protected]>
1 parent 5ed46bb commit f753c6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc/distributions/distribution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ def __new__(cls, name, *args, **kwargs):
579579
kwargs.setdefault("class_name", name)
580580
if isinstance(kwargs.get("observed", None), dict):
581581
raise TypeError(
582-
"The observed parameter should be of type `pd.Series`, " "`np.array`, or `pm.Data`."
582+
"The observed parameter should be of type `pd.Series`, `np.array`, or `pm.Data`."
583583
)
584584
return super().__new__(cls, name, *args, **kwargs)
585585

0 commit comments

Comments
 (0)