Formatting change

Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com>
This commit is contained in:
Petr Kalis 2025-10-13 13:34:53 +02:00 committed by GitHub
parent afe863e36b
commit 9a0f4b72e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -249,8 +249,8 @@ def create_skeleton_instance(
# map inputVersions `ObjectId` -> `str` so json supports it
"inputVersions": list(map(str, data.get("inputVersions", []))),
"colorspace": data.get("colorspace"),
"hasExplicitFrames": data.get("hasExplicitFrames") or False,
"reuseLastVersion": data.get("reuseLastVersion") or False
"hasExplicitFrames": data.get("hasExplicitFrames", False),
"reuseLastVersion": data.get("reuseLastVersion", False),
}
if data.get("renderlayer"):