fix inheritance in example

closes #479
This commit is contained in:
Gabriel Pettier 2020-04-25 20:13:26 +02:00
parent 97b0dd3d41
commit de6c6e9b7a
1 changed files with 2 additions and 2 deletions

View File

@ -240,9 +240,9 @@ Java class implementation in Python
class PythonListIterator(PythonJavaClass):
__javainterfaces__ = ['java/util/ListIterator']
def __init__(self, collection, index=0):
super(TestImplemIterator, self).__init__()
super(PythonListIterator, self).__init__()
self.collection = collection
self.index = index