mirror of
https://github.com/safishamsi/graphify.git
synced 2026-09-23 14:05:43 +00:00
fix: remove stray colon in --cluster-only dict literal (SyntaxError) (#603)
tokens dict at line 826 had output-colon-colon 0 causing a SyntaxError when the Trae skill is invoked with --cluster-only. The extra colon makes Python reject the dict literal entirely. Co-authored-by: Claude Code <noreply@anthropic.com>
This commit is contained in:
@@ -823,7 +823,7 @@ G = json_graph.node_link_graph(data, edges='links')
|
||||
|
||||
detection = {'total_files': 0, 'total_words': 99999, 'needs_graph': True, 'warning': None,
|
||||
'files': {'code': [], 'document': [], 'paper': []}}
|
||||
tokens = {'input': 0, 'output':': 0}
|
||||
tokens = {'input': 0, 'output': 0}
|
||||
|
||||
communities = cluster(G)
|
||||
cohesion = score_all(G, communities)
|
||||
|
||||
Reference in New Issue
Block a user