Skip to content
Snippets Groups Projects
Commit e5bb770f authored by Verbeek, J.M. (Janneke)'s avatar Verbeek, J.M. (Janneke) :speech_balloon:
Browse files

What in tarnation, there's a bug now which causes loads of skips in the data

parent 55b0bbf1
No related branches found
No related tags found
1 merge request!61Sc 145/multisource
......@@ -130,16 +130,14 @@ class Model:
else:
pass
elif self._multi_data_shadow and self._multi_data_source:
for key, source in self._multi_data_source.items():
for key2, shadow in self._multi_data_shadow.items():
#TODO: Problem: what if filename does not comply
if key in key2:
print("result of", key, key2)
print("*"*100)
if key == ut.filter_key(key2):
result = self._stats.analyze(source, shadow)
ut.add_to_dict(key+"_res",
result, self._multi_results)
self._stats = Statistics(None)
else:
pass
......
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