Skip to content

Commit 5995450

Browse files
committed
Fix code example
1 parent 9eb7d78 commit 5995450

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pymc_experimental/distributions/continuous.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,11 @@ class Chi:
261261
Examples
262262
--------
263263
.. code-block:: python
264+
import pymc as pm
265+
from pymc_experimental.distributions import Chi
264266
265267
with pm.Model():
266-
x = pm.Chi('x', nu=1)
268+
x = Chi('x', nu=1)
267269
"""
268270

269271
@staticmethod

0 commit comments

Comments
 (0)