Skip to content

Commit

Permalink
[ignore] Added double quotes in the code for . operator to adhere to …
Browse files Browse the repository at this point in the history
…black formatting in the 'listify plugin'
  • Loading branch information
shrsr committed Nov 14, 2023
1 parent 8cf8a72 commit f8b2c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/filter/listify.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def listify_worker(d, keys, depth, cache, prefix):
for k, v in item.items():
if isinstance(v, list) and all(isinstance(x, str) for x in v):
cache_key = prefix + k
cache_value = ','.join(v)
cache_value = ",".join(v)
cache_work[cache_key] = cache_value
elif not isinstance(v, (dict, list)):
cache_key = prefix + k
Expand Down

0 comments on commit f8b2c93

Please sign in to comment.