Skip to content

Commit

Permalink
return list instead set in CommaSeparatedList
Browse files Browse the repository at this point in the history
  • Loading branch information
aszubarev authored and jeyrce committed Aug 25, 2021
1 parent ba20e03 commit 21c9056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion celery/bin/base.py
Expand Up @@ -168,7 +168,7 @@ class CommaSeparatedList(ParamType):
name = "comma separated list"

def convert(self, value, param, ctx):
return set(text.str_to_list(value))
return text.str_to_list(value)


class Json(ParamType):
Expand Down

0 comments on commit 21c9056

Please sign in to comment.