schema/compilers.py: fix validation of 2+ entries (#40627)

Fix the following syntax which validates only the first array entry:

```python
"compilers": {
    "type": "array",
    "items": [
        {
            "type": ...
        }
    ]
}
```

to

```python
"compilers": {
    "type": "array",
    "items": {
        "type": ...
    }
}
```

which validates the entire array.

Oops...
This commit is contained in:
Harmen Stoppels 2023-10-20 09:51:49 +02:00 committed by GitHub
parent 0907d43783
commit 468f6c757e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,8 +14,7 @@
properties = {
"compilers": {
"type": "array",
"items": [
{
"items": {
"type": "object",
"additionalProperties": False,
"properties": {
@ -69,8 +68,7 @@
},
}
},
}
],
},
}
}