Skip to content

Commit c4094ad

Browse files
committed
Remove *args from VkApiMethod.__call__
1 parent 73c707d commit c4094ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vk_api/vk_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def __getattr__(self, method):
449449

450450
return VkApiMethod(self._vk, method)
451451

452-
def __call__(self, *args, **kwargs):
452+
def __call__(self, **kwargs):
453453
return self._vk.method(self._method, kwargs)
454454

455455

0 commit comments

Comments
 (0)