fix: add self argument to function

This commit is contained in:
Vxrtrauter
2026-03-20 02:26:42 +01:00
parent 2afb3e7716
commit c6940f0178
+1 -1
View File
@@ -45,6 +45,6 @@ class UztrackerScraper:
consoleLog(f"Failed to fetch {search_url}: {e}") consoleLog(f"Failed to fetch {search_url}: {e}")
return None return None
def get_magnet(post: Dict): def get_magnet(self, post: Dict):
return get_magnet_link(post["url"]) return get_magnet_link(post["url"])