From 77b672b93a55821d6b064de16a9cebba44385b03 Mon Sep 17 00:00:00 2001 From: Martin Kirchgessner Date: Mon, 5 Feb 2018 17:47:15 +0100 Subject: [PATCH] =?UTF-8?q?Petite=20erreur=20dans=20le=20script=20de=20v?= =?UTF-8?q?=C3=A9rification=20qui=20cherchait=20encore=20un=20champ=20"mot?= =?UTF-8?q?s"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vérifications/vérifie.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vérifications/vérifie.py b/vérifications/vérifie.py index 4da5cec..a65b08d 100644 --- a/vérifications/vérifie.py +++ b/vérifications/vérifie.py @@ -17,7 +17,7 @@ def principal(): with open('vérifications/schéma.json') as f: schema = json.load(f) valide(d, schema) - verifie_ordre(d['mots']) + verifie_ordre(d) if __name__ == '__main__':