mirror of https://github.com/django/django.git
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:
|
||||
self.argtypes = argtypes
|
||||
|
||||
def __call__(self, *args, **kwargs):
|
||||
return self.func(*args, **kwargs)
|
||||
def __call__(self, *args):
|
||||
return self.func(*args)
|
||||
|
||||
@cached_property
|
||||
def func(self):
|
||||
|
|
Loading…
Reference in New Issue