Skip to content

Commit

Permalink
fix misordering bug in py2
Browse files Browse the repository at this point in the history
  • Loading branch information
sc1f committed Nov 15, 2019
1 parent 71db00f commit f89b204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/perspective/perspective/table/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def update(self, data):
Args:
data (dict|list|dataframe) : the data with which to update the Table
'''
columns = self.columns()
columns = [name for name in self._table.get_schema().columns() if name != "psp_okey"]
types = self._table.get_schema().types()
self._accessor = _PerspectiveAccessor(data)
self._accessor._names = columns + [name for name in self._accessor._names if name == "__INDEX__"]
Expand Down

0 comments on commit f89b204

Please sign in to comment.