Skip to content

Commit 2587bc9

Browse files
committed
[core] keyValues: Convert key to string in getSerializedValues
1 parent 91493cb commit 2587bc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/core/keyValues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def getSerializedValues(self) -> Any:
7979
"""
8080
Return the list of pairs serialized.
8181
"""
82-
return { pair.key: pair.value for pair in self._pairs }
82+
return { str(pair.key): pair.value for pair in self._pairs }
8383

8484
def getJson(self) -> str:
8585
"""

0 commit comments

Comments
 (0)