Skip to content

Commit

Permalink
apply suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayThorve committed Aug 14, 2024
1 parent e7d1bea commit 703b41a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions python/cuxfilter/charts/core/non_aggregate/core_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ def edge_columns(self):

@property
def node_columns(self):
cols = [
self.node_id,
self.node_x,
self.node_y,
]
if self.node_aggregate_col != self.node_id:
return [
self.node_id,
self.node_x,
self.node_y,
self.node_aggregate_col,
]
return [self.node_id, self.node_x, self.node_y]
cols.append(self.node_aggregate_col)
return cols

def __init__(
self,
Expand Down

0 comments on commit 703b41a

Please sign in to comment.