Clear up __init__ parameters #41
Open
opened 3 years ago by phryk
·
0 comments
Loading…
Reference in new issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
The API should be stable enough by now to get rid of a lot of
*args
and especially**kwargs
in lots of classes'__init__
(and potentially other assorted functions), which should make things a lot easier to read.Also, clean up
super
calls tosuper()
anywhere the parameters aren't the default implied ones.