mirror of
https://github.com/django/django.git
synced 2025-04-06 06:26:41 +00:00
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…
x
Reference in New Issue
Block a user