I would like to use `Dict[str, str]` as type withi...
# ask-community
s
I would like to use
Dict[str, str]
as type within config_schema, for example:
config_schema={'some_value': Dict[str, str]}
for a better definition, but received the next error:
Copy code
dagster.core.errors.DagsterInvalidDefinitionError: You have passed in typing.Dict[str, str] to the config system. Types from the typing module in python are not allowed in the config system. You must use types that are imported from dagster or primitive types such as bool, int, etc.
is there a plan to add those types? thanks!
j
id check out either Shape or Permissive