Skip to content

Commit

Permalink
Removing space (#3586)
Browse files Browse the repository at this point in the history
  • Loading branch information
phildominguez-gsa committed Mar 29, 2024
1 parent ea18e17 commit f80b140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/audit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def json_array_to_str(json_array):
if json_array is None:
return ""
elif isinstance(json_array, list):
return ", ".join(map(str, json_array))
return ",".join(map(str, json_array))
else:
# FIXME This should raise an error
return f"NOT AN ARRAY: {json_array}"
Expand Down

0 comments on commit f80b140

Please sign in to comment.