(self, eval_bytes=False)
| 993 | return False |
| 994 | |
| 995 | def get_output(self, eval_bytes=False): |
| 996 | # type: (bool) -> str |
| 997 | if self.result_export_object.startswith("b'") and eval_bytes: |
| 998 | return plain_str(eval(self.result_export_object)) |
| 999 | return self.result_export_object |
| 1000 | |
| 1001 | |
| 1002 | def do_graph( |
nothing calls this directly
no test coverage detected