From e0713a8eeb933c36661c5cc20ea874f14d8cc0a7 Mon Sep 17 00:00:00 2001 From: Dylan Date: Sun, 13 Aug 2023 15:02:41 +0100 Subject: [PATCH] Remove syndication as method --- twExtract/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twExtract/__init__.py b/twExtract/__init__.py index efaf38a..1e9a02e 100644 --- a/twExtract/__init__.py +++ b/twExtract/__init__.py @@ -161,7 +161,7 @@ def extractStatusV2Legacy(url): return tweet['legacy'] def extractStatus(url): - methods=[extractStatus_syndication,extractStatusV2Legacy] + methods=[extractStatusV2Legacy] for method in methods: try: return method(url)