Fix missing rotate argument for deque-attriutes, actually commit unittest updates.
This commit is contained in:
parent
4f1515fc72
commit
756d4be4bc
2 changed files with 8 additions and 8 deletions
|
|
@ -305,8 +305,8 @@ class _SaverDeque(_SaverMutable):
|
|||
self._data.reverse()
|
||||
|
||||
@_save
|
||||
def rotate(self):
|
||||
self._data.rotate()
|
||||
def rotate(self, *args):
|
||||
self._data.rotate(*args)
|
||||
|
||||
#
|
||||
# serialization helpers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue