Removed unused **kwargs from GEOSFuncFactory.__call__().
This commit is contained in:
parent
7b77505bc9
commit
486a8dae2d
|
@ -148,8 +148,8 @@ class GEOSFuncFactory:
|
||||||
if argtypes is not None:
|
if argtypes is not None:
|
||||||
self.argtypes = argtypes
|
self.argtypes = argtypes
|
||||||
|
|
||||||
def __call__(self, *args, **kwargs):
|
def __call__(self, *args):
|
||||||
return self.func(*args, **kwargs)
|
return self.func(*args)
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def func(self):
|
def func(self):
|
||||||
|
|
Loading…
Reference in New Issue