Skip to content

Commit 4b9a508

Browse files
committed
Make tests pass
1 parent f7d1beb commit 4b9a508

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/generic.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2366,7 +2366,8 @@ def add_suffix(self, suffix):
23662366
1 A 1 1
23672367
"""
23682368

2369-
def sort_values(self):
2369+
def sort_values(self, by=None, axis=0, ascending=True, inplace=False,
2370+
kind='quicksort', na_position='last'):
23702371
"""
23712372
NOT IMPLEMENTED: do not call this method, as sorting values is not
23722373
supported for Panel objects and will raise an error.

0 commit comments

Comments
 (0)