Clear up __init__ parameters #41
Labels
No Label
ANA
BUG
CSS
DOC
DX
ECO
FET
GFX
PRO
SEC
TPL
UX
VIS
analysis
analysis.data
analysis.editor
analysis.util
analysis.visualization
auth
cli
core
doc
form
mailing
md
rendering
storage
svg
svg.color
svg.palettes
testing
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: phryk-evil-mad-sciences-llc/poobrains#41
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. 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.