Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
OriolAbril committed Mar 1, 2020
1 parent 04c0cf5 commit 383e925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arviz/data/io_pymc3.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def find_observations(self) -> Tuple[Optional[Dict[str, Var]], Optional[Dict[str
multi_observations = {}
for obs in self.model.observed_RVs:
if hasattr(obs, "observations"):
observations[obs.name] = obs.observation
observations[obs.name] = obs.observations
elif hasattr(obs, "data"):
for key, val in obs.data.items():
multi_observations[key] = val
Expand Down

0 comments on commit 383e925

Please sign in to comment.