mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Removed unused **kwargs from GEOSFuncFactory.__call__().
This commit is contained in:
parent
7b77505bc9
commit
486a8dae2d
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue