Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Feb 13, 2018
1 parent 6d8cf31 commit d96e8df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/element/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def _process(self, element, key=None):
target = element.dimension_values(1, expanded=False)
nodes = np.unique(np.concatenate([source, target]))
if source.dtype.kind == 'i' and target.dtype.kind == 'i':
nodes = node.astype('int')
nodes = nodes.astype('int')
if self.p.layout:
import pandas as pd
df = pd.DataFrame({'index': nodes})
Expand Down

0 comments on commit d96e8df

Please sign in to comment.