8000 Oops, reverse super arguments · netzulo/python-io-chunks@68fb460 · GitHub
[go: up one dir, main page]

Skip to content

Commit 68fb460

Browse files
committed
Oops, reverse super arguments
1 parent e6bf758 commit 68fb460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

io_chunks/chunks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __init__(self, stream, size, start=None):
5050
self._size = size
5151
self._cursor = 0
5252
self._stream = stream
53-
super(self, RawIOChunk).__init__()
53+
super(RawIOChunk, self).__init__()
5454

5555
def readinto(self, array):
5656
if not isinstance(array, (bytearray, memoryview)):

0 commit comments

Comments
 (0)
0