diff --git a/tljh/config_schema.py b/tljh/config_schema.py index f86d321..4a17f13 100644 --- a/tljh/config_schema.py +++ b/tljh/config_schema.py @@ -80,7 +80,12 @@ config_schema = { "type": "object", "additionalProperties": False, "properties": { - "memory": {"type": "string"}, + "memory": { + "anyOf": [ + {"type": "string"}, + {"type": "null"}, + ] + }, "cpu": { "anyOf": [ {"type": "number", "minimum": 0},