MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / _generate_final_img

Function _generate_final_img

code2flow/engine.py:658–668  ·  view source on GitHub ↗

Write the graphviz file :param str output_file: :param str extension: :param str final_img_filename: :param int num_edges:

(output_file, extension, final_img_filename, num_edges)

Source from the content-addressed store, hash-verified

656
657
658def _generate_final_img(output_file, extension, final_img_filename, num_edges):
659 """
660 Write the graphviz file
661 :param str output_file:
662 :param str extension:
663 :param str final_img_filename:
664 :param int num_edges:
665 """
666 _generate_graphviz(output_file, extension, final_img_filename)
667 logging.info("Completed your flowchart! To see it, open %r.",
668 final_img_filename)
669
670
671def code2flow(raw_source_paths, output_file, language=None, hide_legend=True,

Callers 1

code2flowFunction · 0.85

Calls 1

_generate_graphvizFunction · 0.85

Tested by

no test coverage detected