From 127e24822e96b2b14192108ddf4aa2aa58ed9568 Mon Sep 17 00:00:00 2001 From: xrombik Date: Sat, 22 Jun 2019 20:38:57 +0300 Subject: [PATCH] Fix for syntax error while installation --- indexedproperty/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexedproperty/__init__.py b/indexedproperty/__init__.py index f055e08..ed24dd3 100644 --- a/indexedproperty/__init__.py +++ b/indexedproperty/__init__.py @@ -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.