1# FIXME: PopupEditor is a proxy class defined here just for backward
2# compatibility. The class (which represents the editor factory) has been moved
3# to the traitsui.editors.list_editor file.
4from traitsui.editors.popup_editor import (
5    _PopupEditor as BasePopupEditor,
6    PopupEditor,
7)
8
9from .ui_editor import UIEditor
10
11# -------------------------------------------------------------------------
12#  '_PopupEditor' class:
13# -------------------------------------------------------------------------
14
15
16class _PopupEditor(BasePopupEditor, UIEditor):
17    pass
18