ResidentMario/py_d3

Fix super() call in D3Magics class

MattPitlyk opened this issue · 1 comments

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.

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.