Skip to content
Advertisement

How does one ignore extra arguments passed to a dataclass?

I’d like to create a config dataclass in order to simplify whitelisting of and access to specific environment variables (typing os.environ['VAR_NAME'] is tedious relative to config.VAR_NAME). I therefore need to ignore unused environment variables in my dataclass‘s __init__ function, but I don’t know how to extract the default __init__ in order to wrap it with, e.g., a function that also includes *_ as one of the arguments.

JavaScript

Running this gives me TypeError: __init__() got an unexpected keyword argument 'SOME_DEFAULT_ENV_VAR'.

Advertisement

Answer

I would just provide an explicit __init__ instead of using the autogenerated one. The body of the loop only sets recognized value, ignoring unexpected ones.

Note that this won’t complain about missing values without defaults until later, though.

JavaScript

Alternatively, you can pass a filtered environment to the default Config.__init__.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement