Skip to content

Commit

Permalink
fix scw_list encoding (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsavchenko authored Feb 8, 2024
1 parent a94c31c commit efca822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oda_api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ def parameters_dict_payload(self):
}

for k, v in p.items():
if isinstance(v, (list, dict, set)) and (k not in ['catalog_selected_objects', 'selected_catalog']):
if isinstance(v, (list, dict, set)) and (k not in ['catalog_selected_objects', 'selected_catalog', 'scw_list']):
p[k] = json.dumps(v)

if self.is_submitted:
Expand Down

0 comments on commit efca822

Please sign in to comment.