Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing calls to super class "__init__"s (#1693)
* FIX : Add missing call to __init__ in super class * FIX : Add missing call to __init__ in super class * FIX : Add missing call to __init__ in super class * FIX : Add missing call to super __init__ and fix a flake8 error modified: traitsui/editors/array_editor.py modified: traitsui/qt4/ui_panel.py * DEV : Undo change in qt4 GroupEditor see #1674 modified: traitsui/qt4/ui_panel.py * CLN : Pass args to __init__ call Previously, we were setting traits/attributes before calling __init__ on the objects, which setup the traits machinery. Instead, this commit passes the arguments to __init__, which feels like the right thing to do modified: traitsui/editors/array_editor.py modified: traitsui/editors/tuple_editor.py modified: traitsui/qt4/ui_panel.py
- Loading branch information