Mel Seto
commited on
Commit
·
2833288
1
Parent(s):
e7b1d63
remove print statement
Browse files
src/verification/wiktionary_client.py
CHANGED
|
@@ -19,7 +19,6 @@ class WiktionaryClient:
|
|
| 19 |
response = requests.get(self.BASE_URL, params=params, headers=self.HEADERS, timeout=5)
|
| 20 |
response.raise_for_status()
|
| 21 |
data = response.json()
|
| 22 |
-
print(f'data: {data}')
|
| 23 |
pages = data.get("query", {}).get("pages", {})
|
| 24 |
exists = "-1" not in pages
|
| 25 |
except Exception:
|
|
|
|
| 19 |
response = requests.get(self.BASE_URL, params=params, headers=self.HEADERS, timeout=5)
|
| 20 |
response.raise_for_status()
|
| 21 |
data = response.json()
|
|
|
|
| 22 |
pages = data.get("query", {}).get("pages", {})
|
| 23 |
exists = "-1" not in pages
|
| 24 |
except Exception:
|