gokart icon indicating copy to clipboard operation
gokart copied to clipboard

mypy: Allow ChoiceParameter to set Literal Type

Open kitagry opened this issue 1 year ago • 0 comments

Expected

T = Literal["foo", "bar"]
t: T = luigi.ChoiceParameter(choices=typing.get_args(T), var_type=str)  # ok

Actual

T = Literal["foo", "bar"]
t: T = luigi.ChoiceParameter(choices=typing.get_args(T), var_type=str)  # mypy: error

kitagry avatar Sep 19 '24 04:09 kitagry