Commit d323fb19 authored by Ben Beeston's avatar Ben Beeston
Browse files

Linting fix (hopefully)

parent c035d69c
Loading
Loading
Loading
Loading
Loading
+19 −11
Original line number Diff line number Diff line
@@ -312,12 +312,16 @@
      "properties": {
          "TCPPortList": {
              "type": "array",
          "items": { "$ref": "#/$defs/TCPPort" }
              "items": {
                  "$ref": "#/$defs/TCPPort"
              }
          }
      },
      "required": ["TCPPortList"],
      "required": [
          "TCPPortList"
      ],
      "additionalProperties": false
    },
    }
    "UDPPortRange": {
      "type": "object",
      "properties": {
@@ -339,10 +343,14 @@
      "properties": {
          "UDPPortList": {
              "type": "array",
          "items": { "$ref": "#/$defs/UDPPort" }
              "items": {
                  "$ref": "#/$defs/UDPPort"
              }
          }
      },
      "required": ["UDPPortList"],
      "required": [
          "UDPPortList"
      ],
      "additionalProperties": false
    },
    "Port": {