Skip to content

Commit a44dc36

Browse files
authored
Remove incompatible definition of pop() from OrderingList (#229)
We can as well inherit the signature from list.
1 parent 810adf2 commit a44dc36

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

sqlalchemy-stubs/ext/orderinglist.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ class OrderingList(list):
1212
def append(self, entity): ...
1313
def insert(self, index, entity): ...
1414
def remove(self, entity): ...
15-
def pop(self, index: int = ...): ...
1615
def __setitem__(self, index, entity): ...
1716
def __delitem__(self, index): ...
1817
def __setslice__(self, start, end, values): ...

0 commit comments

Comments
 (0)