Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix duplicates of dependency paths #249

Merged
merged 2 commits into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/tach/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def generate_module_graph_dot_file(
# Add dependency edges
for module in project_config.modules:
for dependency in module.depends_on:
graph.add_edge(module.path, dependency) # type: ignore
graph.add_edge(module.path, dependency.path) # type: ignore

pydot_graph: pydot.Dot = nx.nx_pydot.to_pydot(graph) # type: ignore
dot_data: str = pydot_graph.to_string() # type: ignore
Expand Down
Loading