Hello friends, how can I get this to work using py...
# ask-community
q
Hello friends, how can I get this to work using pythonic configs and resources. I want my field to accept either a string or a list of strings I tried
Copy code
class tbSConfig(Config):
    terms: str | List[str]
but I get an error
Unable to resolve config type typing.Union[str, typing.List[str]] to a supported Dagster config type.