def is_dot_executable_available()

in playground/process_analysis/status_transition_graph_vistualizer.py [0:0]


    def is_dot_executable_available() -> bool:
        """
        Check if the 'dot' executable is available.
        """
        try:
            graphviz.version()
            return True
        except graphviz.ExecutableNotFound:
            return False