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 auvipy committed Oct 13, 2020
1 parent 70cbed3 commit 06dfe27
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 06dfe27

Please sign in to comment.