Skip to content

Commit

Permalink
avoid duplicate columns when node_aggregate_col is the same as node_id
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayThorve committed Aug 14, 2024
1 parent 4fc4951 commit 35fc540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cuxfilter/charts/core/non_aggregate/core_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def edge_columns(self):

@property
def node_columns(self):
if self.node_aggregate_col:
if self.node_aggregate_col != self.node_id:
return [
self.node_id,
self.node_x,
Expand Down

0 comments on commit 35fc540

Please sign in to comment.