Skip to content

Commit cd53b41

Browse files
committed
Also allow None for memory
1 parent 5916407 commit cd53b41

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tljh/config_schema.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,12 @@
8080
"type": "object",
8181
"additionalProperties": False,
8282
"properties": {
83-
"memory": {"type": "string"},
83+
"memory": {
84+
"anyOf": [
85+
{"type": "string"},
86+
{"type": "null"},
87+
]
88+
},
8489
"cpu": {
8590
"anyOf": [
8691
{"type": "number", "minimum": 0},

0 commit comments

Comments
 (0)