Closed sequoiap closed 1 year ago
Instead of doing weird wrapping with the __init__ function, we now simply require all subclasses of Model to call super().__init__().
__init__
Model
super().__init__()
Closes #93.
Instead of doing weird wrapping with the
__init__
function, we now simply require all subclasses ofModel
to callsuper().__init__()
.Closes #93.