min before max

This commit is contained in:
2021-01-23 11:58:49 +01:00
parent 02771b6d73
commit 4d565f811c
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ from .annotator import ERASED_ATTRIBUTES, CONVERT_OPTION
FUNC_TO_DICT = []
ATTRIBUTES_ORDER = ('name', 'doc', 'default', 'multi', 'properties', 'max_number', 'min_number', 'dynamic', 'opt')
ATTRIBUTES_ORDER = ('name', 'doc', 'default', 'multi', 'properties', 'min_number', 'max_number', 'dynamic', 'opt')
class Root(): # pylint: disable=R0903