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

Redundant print statements are now gone

parent 4552d69d
No related branches found
No related tags found
2 merge requests!53Master,!49Fileselection/sc 108
......@@ -68,15 +68,15 @@ class Model:
if self.has_source() and self.has_shadow():
if self._multi_data_shadow:
for key, data in self._multi_data_shadow.items():
print(key,self._id, ut.filter_key(key))
if self._id is ut.filter_key(key):
result = self._stats.analyze(self._data_source, data)
self.add_to_dict(key+"_res", result, self._multi_results)
else:
pass
else:
print("Single analysis")
self._analysis_results = \
self._stats.analyze(self._data_source, self._data_shadow)
else:
print("This needs fixing")
pass
......@@ -15,6 +15,6 @@ class Umbra:
"""Start the main loop."""
self._controller.start()
B
if __name__ == "__main__":
Umbra().main()
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