MDataViewWidget
inheriting HasStrictTraits
causes problems with super()
#1067
Labels
Milestone
MDataViewWidget
inheriting HasStrictTraits
causes problems with super()
#1067
Since
Widget
andMWidget
inherit fromHasTraits
, andMDataWidget
is first in the MRO, we getHasStrictTraits
second, which messes withsuper()
calls toMWidget
asHasStrictTraits
doesn't have the right methods.Fixes are either to consistently use
HasTraits
orHasStrictTraits
, butHasStrictTraits
is not backwards compatible, so we should drop use of that for now.The text was updated successfully, but these errors were encountered: