Commit 582fca7f authored by Georgios Dagkakis's avatar Georgios Dagkakis

plugin output to file (commited by mistake) removed

parent 425717c5
......@@ -155,12 +155,7 @@ class PluginRegistry(object):
"""Preprocess, execute & postprocess.
"""
for input_preparation in self.input_preparation_list:
data = input_preparation.preprocess(deepcopy(data))
outputJSONString=json.dumps(data, indent=5)
outputJSONFile=open('sentToManPy.json', mode='w')
outputJSONFile.write(outputJSONString)
data = input_preparation.preprocess(deepcopy(data))
data = self.execution_plugin.run(data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment