From b881c6729b79e37aba5ab2d99c3ba0fd79bc1b76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sat, 9 Jun 2018 15:51:50 +0100 Subject: xep_0363: Remove unused parameters to find_upload_services MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- slixmpp/plugins/xep_0363/http_upload.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'slixmpp/plugins/xep_0363/http_upload.py') diff --git a/slixmpp/plugins/xep_0363/http_upload.py b/slixmpp/plugins/xep_0363/http_upload.py index 0cca2d08..073b3fc0 100644 --- a/slixmpp/plugins/xep_0363/http_upload.py +++ b/slixmpp/plugins/xep_0363/http_upload.py @@ -68,8 +68,7 @@ class XEP_0363(BasePlugin): def _handle_request(self, iq): self.xmpp.event('http_upload_request', iq) - async def find_upload_service(self, ifrom=None, timeout=None, callback=None, - timeout_callback=None): + async def find_upload_service(self, timeout=None): infos = [self.xmpp['xep_0030'].get_info(self.xmpp.boundjid.domain)] iq_items = await self.xmpp['xep_0030'].get_items( self.xmpp.boundjid.domain, timeout=timeout) @@ -100,7 +99,7 @@ class XEP_0363(BasePlugin): callback=None, timeout_callback=None): ''' Helper function which does all of the uploading process. ''' if self.upload_service is None: - info_iq = await self.find_upload_service(ifrom=ifrom, timeout=timeout) + info_iq = await self.find_upload_service(timeout=timeout) if info_iq is None: raise UploadServiceNotFound() self.upload_service = info_iq['from'] -- cgit v1.2.3