From bd347c0941d5f5180337f4de8e8f04dfff532a54 Mon Sep 17 00:00:00 2001 From: Tatu Ylonen Date: Tue, 27 Feb 2024 17:01:34 +0200 Subject: [PATCH] Fixed a typo in previous commit --- src/wiktextract/wiktionary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wiktextract/wiktionary.py b/src/wiktextract/wiktionary.py index 0c279ca1..a197a19a 100644 --- a/src/wiktextract/wiktionary.py +++ b/src/wiktextract/wiktionary.py @@ -362,7 +362,7 @@ def check_json_data( forms = dt.get("forms") or [] for form in forms: check_tags(wxr, dt, word, lang, pos, form) - tags = = dt.get("tags") + tags = dt.get("tags") if not isinstance(tags, (list, tuple)) or "table-tags" not in tags: check_str_fields(wxr, dt, word, lang, pos, form, ["form"], mandatory=True)