Skip to content

Commit 98dbbbe

Browse files
author
Michael Erickson
committed
Using retrieve instead of invoke
1 parent ce12519 commit 98dbbbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swat/cas/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5998,7 +5998,7 @@ def rename(self, columns, errors='ignore', inplace=True, **kwargs):
59985998
raise TypeError("Columns must be a dict or function")
59995999

60006000
#Use list of dicts to rename using alterTable action
6001-
self._invoke('alterTable', columns=alterTable)
6001+
self._retrieve('alterTable', columns=alterTable)
60026002
return self
60036003

60046004
def reset_index(self, level=None, drop=False, inplace=False,

0 commit comments

Comments
 (0)