Fix super() call in D3Magics class
MattPitlyk opened this issue · 1 comments
MattPitlyk commented
Line 19: The super call is missing arguments:
super(D3Magics, self).__init__(**kwargs)
It didn't run for me until I made that change, and now it works.
ResidentMario commented
That's because I neglected to test this in 2.7
, Python version before 3.0 expected parent classes in the constructor. Should be fixed now.