Skip to content
Snippets Groups Projects
Commit 67b8850c authored by juga's avatar juga Committed by Matt Traudt
Browse files

Stop calling write method from the class

and call it from object instance, otherwise generate would fail.
write method should not be a classinstance since a Class won't
have useful information to write, and can't be an static method
since it requires an argument.
parent d67772ba
No related branches found
No related tags found
No related merge requests found
......@@ -57,5 +57,5 @@ def main(args, conf):
return
bw_file = V3BWFile.from_arg_results(args, conf, results)
output = args.output or conf['paths']['v3bw_fname'].format(now_fname())
V3BWFile.write(output)
bw_file.write(output)
log.info('Mean bandwidth per line: %f "KiB"', bw_file.avg_bw)
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