Skip to content

Commit

Permalink
Adapt to enum use
Browse files Browse the repository at this point in the history
  • Loading branch information
naglis committed Nov 19, 2024
1 parent 4765986 commit 92a9b38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aeneas/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Validator(Loggable):
# COMMENTED ),
#
(gc.PPN_JOB_IS_HIERARCHY_TYPE, HierarchyType.ALLOWED_VALUES),
(gc.PPN_JOB_OS_CONTAINER_FORMAT, ContainerFormat.ALLOWED_VALUES),
(gc.PPN_JOB_OS_CONTAINER_FORMAT, [v.value for v in ContainerFormat]),
(gc.PPN_JOB_OS_HIERARCHY_TYPE, HierarchyType.ALLOWED_VALUES),
(gc.PPN_TASK_IS_TEXT_FILE_FORMAT, TextFileFormat.ALLOWED_VALUES),
(gc.PPN_TASK_OS_FILE_FORMAT, SyncMapFormat.ALLOWED_VALUES),
Expand Down

0 comments on commit 92a9b38

Please sign in to comment.