Coverage for call_graph / __init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-02-08 15:04 -0800

1"""Call graph analysis module.""" 

2 

3from __future__ import annotations 

4 

5from call_graph.core import build_call_graph, find_call_cycles, find_unused_functions 

6from call_graph.formatters import format_dot 

7 

8__all__ = [ 

9 "build_call_graph", 

10 "find_call_cycles", 

11 "find_unused_functions", 

12 "format_dot", 

13 "PythonCallParser", 

14]