Skip to content

Commit 3acd627

Browse files
committed
update: computedValues formatter
1 parent 0d7c42c commit 3acd627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arango/formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def format_collection(body: Json) -> Json:
249249
result["min_revision"] = body["minRevision"]
250250
if "schema" in body:
251251
result["schema"] = body["schema"]
252-
if "computedValues" in body:
252+
if body.get("computedValues") is not None:
253253
result["computedValues"] = body["computedValues"]
254254

255255
if "internalValidatorType" in body:

0 commit comments

Comments
 (0)