Remove references to broadcast provider_restriction being None

None is not a value that is allowed any more.
This commit is contained in:
Katie Smith
2021-05-10 15:58:31 +01:00
parent 4624328c36
commit c4d855a1a0
2 changed files with 2 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ service_broadcast_settings_schema = {
"properties": {
"broadcast_channel": {"enum": ["test", "severe"]},
"service_mode": {"enum": ["training", "live"]},
"provider_restriction": {"enum": [None, "three", "o2", "vodafone", "ee", "all"]}
"provider_restriction": {"enum": ["three", "o2", "vodafone", "ee", "all"]}
},
"required": ["broadcast_channel", "service_mode", "provider_restriction"]
}