File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
governance/third-generation/common-functions Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -276,9 +276,10 @@ to_string = func(obj) {
276
276
if index < lastIndex {
277
277
output += to_string(key) + ": " + to_string(obj[key]) + ", "
278
278
} else {
279
- output += to_string(key) + ": " + to_string(obj[key]) + "}"
279
+ output += to_string(key) + ": " + to_string(obj[key])
280
280
}
281
281
}
282
+ output += "}"
282
283
return output
283
284
else:
284
285
return ""
Original file line number Diff line number Diff line change @@ -180,9 +180,10 @@ to_string = func(obj) {
180
180
if index < lastIndex {
181
181
output += to_string(key) + ": " + to_string(obj[key]) + ", "
182
182
} else {
183
- output += to_string(key) + ": " + to_string(obj[key]) + "}"
183
+ output += to_string(key) + ": " + to_string(obj[key])
184
184
}
185
185
}
186
+ output += "}"
186
187
return output
187
188
else:
188
189
return ""
You can’t perform that action at this time.
0 commit comments