BUG: Pass correct class to super call.

This commit is contained in:
Scott Sanderson
2016-05-02 15:15:22 -04:00
parent c40bbfae03
commit 1a2ed2724b
+1 -1
View File
@@ -558,7 +558,7 @@ cdef class _ObjectAdjustment(Adjustment):
Py_ssize_t first_col,
Py_ssize_t last_col,
object value):
super(Adjustment, self).__init__(
super(_ObjectAdjustment, self).__init__(
first_row=first_row,
last_row=last_row,
first_col=first_col,