mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
fixed json files with list inside
This commit is contained in:
parent
3fdcff6185
commit
39a1a560aa
1 changed files with 4 additions and 1 deletions
|
|
@ -469,7 +469,10 @@ class ProjectWidget(QtWidgets.QWidget):
|
|||
new_values = all_values
|
||||
for key in key_sequence:
|
||||
new_values = new_values[key]
|
||||
origin_values.update(new_values)
|
||||
if isinstance(new_values, dict):
|
||||
origin_values.update(new_values)
|
||||
else:
|
||||
origin_values = new_values
|
||||
|
||||
output_path = os.path.join(
|
||||
config.PROJECT_PRESETS_PATH, subpath
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue