← Back to context

Comment by IgorPartola

1 day ago

Since when can you use data classes for kwargs? There are plenty of times when you should use a dict even if you know the keys.

You shouldn't be using kwargs! That is also well known to be bad practice (or it should be anyway).

https://medium.com/codex/stop-using-kwargs-as-method-argumen...

http://ivory.idyll.org/blog/on-kwargs.html

Give me another one.