Petite erreur dans le script de vérification qui cherchait encore un champ "mots"

This commit is contained in:
Martin Kirchgessner
2018-02-05 17:47:15 +01:00
parent 471bfc076c
commit 77b672b93a

View File

@@ -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__':