Skip to content
Snippets Groups Projects
Commit d98d6262 authored by Matthew Pitkin's avatar Matthew Pitkin
Browse files

dict.py: fix test failure due to deepcopy

parent 300e0091
No related branches found
No related tags found
1 merge request!1103Fix how the joint MultivariateGaussian prior is set when reading it from a file
import copy
import json
import os
import re
......@@ -208,7 +207,8 @@ class PriorDict(dict):
def from_dictionary(self, dictionary):
mvgkwargs = {}
for key, val in copy.deepcopy(dictionary).items():
for key in list(dictionary.keys()):
val = dictionary[key]
if isinstance(val, Prior):
continue
elif isinstance(val, (int, float)):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment