File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 25
25
26
26
from pymc .aesaraf import extract_obs_data
27
27
from pymc .distributions import logpt
28
- from pymc .model import Model , modelcontext
28
+ from pymc .model import modelcontext
29
29
from pymc .util import get_default_varnames
30
30
31
31
if TYPE_CHECKING :
32
32
from typing import Set # pylint: disable=ungrouped-imports
33
33
34
34
from pymc .backends .base import MultiTrace # pylint: disable=invalid-name
35
+ from pymc .model import Model
35
36
36
37
___all__ = ["" ]
37
38
41
42
Var = Any # pylint: disable=invalid-name
42
43
43
44
44
- def find_observations (model : Model ) -> Optional [Dict [str , Var ]]:
45
+ def find_observations (model : Optional [ " Model" ] ) -> Optional [Dict [str , Var ]]:
45
46
"""If there are observations available, return them as a dictionary."""
46
47
if model is None :
47
48
return None
You can’t perform that action at this time.
0 commit comments