]> git.phdru.name Git - bookmarks_db.git/commitdiff
Refactor(bkmk_raiohttp): Remove unused values
authorOleg Broytman <phd@phdru.name>
Thu, 15 Aug 2024 21:59:06 +0000 (00:59 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 16 Aug 2024 16:11:30 +0000 (19:11 +0300)
Robots/bkmk_raiohttp.py

index e94d72a291749895b5b55a75728776ab9c937b9d..44f4cf79367c99b7dfd90760b6b9f7329d44bf8f 100644 (file)
@@ -27,7 +27,7 @@ class robot_aiohttp(robot_base):
 
     def get(self, bookmark, url, accept_charset=False, use_proxy=False):
         if url.startswith('ftp://'):
-            error, _, _, body = asyncio.run(get_ftp(
+            error, body = asyncio.run(_get_ftp(
                 url, connect_timeout=self.connect_timeout,
                 timeout=self.timeout,
             ))
@@ -79,7 +79,7 @@ async def get_http(url, headers={}, proxy=None, connect_timeout=30, timeout=60):
         return e, None, None, None
 
 
-async def get_ftp(url, connect_timeout=30, timeout=60):
+async def _get_ftp(url, connect_timeout=30, timeout=60):
     split_results = urlsplit(url)
     path = split_results.path or '/'
     user = split_results.username or 'anonymous'
@@ -96,5 +96,5 @@ async def get_ftp(url, connect_timeout=30, timeout=60):
             async for _path, _info in client.list(path, recursive=True):
                 lines.append('%s %s' % (_info, _path))
     except (OSError, aioftp.errors.AIOFTPException) as e:
-        return e, None, None, None
-    return None, None, None, '\n'.join(lines)
+        return e, None
+    return None, '\n'.join(lines)