Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion indexedproperty/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class IndexedProperty:
# addmethod will not allow you to create a method from illegalmethods.
illegalmethods = ('__getitem__', '__setitem__', '__delitem__')

def __init__(self, getter=None, name=None, doc=None, *, tdict=None, **kwargs):
def __init__(self, getter=None, name=None, doc=None, tdict=None, **kwargs):
"""
Create a new IndexedProperty.

Expand Down