From c227b10f86c89e527a7010583fdcbb2bd651d46b Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 28 Aug 2020 20:11:07 -0300 Subject: [PATCH] Interpret as error using unknown fields in variants. --- kibot/var_base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kibot/var_base.py b/kibot/var_base.py index 88bc2a1d..43bda00f 100644 --- a/kibot/var_base.py +++ b/kibot/var_base.py @@ -10,6 +10,7 @@ from .macros import macros, document # noqa: F401 class BaseVariant(RegVariant): def __init__(self): super().__init__() + self._unkown_is_error = True with document: self.name = '' """ Used to identify this particular variant definition """