(self)
| 74 | self.script = self.script + self.template.format(f.name, name) |
| 75 | |
| 76 | def run(self): |
| 77 | self.gen_csv() |
| 78 | script = self.script[:-3].format(self.output) |
| 79 | command = subprocess.Popen(['gnuplot'], stdin=subprocess.PIPE) |
| 80 | command.communicate(script.encode()) |
| 81 | |
| 82 | |
| 83 | if __name__ == '__main__': |
no test coverage detected