Remove empty "required" in schema

There are no required for WSLConf*, remove it instead of using empty
lists.

Co-authored-by: Didier Roche <didrocks@ubuntu.com>
This commit is contained in:
Jean-Baptiste Lallement 2021-09-09 11:46:23 +02:00 committed by Didier Roche
parent 4966173d6c
commit fecd1cc68c
3 changed files with 0 additions and 4 deletions

View File

@ -83,7 +83,6 @@
"type": "boolean"
}
},
"required": [],
"additionalProperties": false
},
"wslconfadvanced": {
@ -120,7 +119,6 @@
"type": "boolean"
}
},
"required": [],
"additionalProperties": false
},
"late-commands": {

View File

@ -49,7 +49,6 @@ class WSLConfigurationAdvancedController(SubiquityController):
'automount': {'type': 'boolean'},
'mountfstab': {'type': 'boolean'}
},
'required': [],
'additionalProperties': False,
}

View File

@ -44,7 +44,6 @@ class WSLConfigurationBaseController(SubiquityController):
'gen_host': {'type': 'boolean'},
'gen_resolvconf': {'type': 'boolean'},
},
'required': [],
'additionalProperties': False,
}