You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if isinstance(value, bool):
value = str(value).lower()
elif isinstance(value, dict):
# Special handling for dictionaries
...
else:
value = f'"{str(value)}"'
should have an elif for list like:
elif isinstance(value, list):
value = json.dumps(value)
PR
The
shared_config_files
field is being rendered as a string instead of as a set of strings.The text was updated successfully, but these errors were encountered: