1# (C) Copyright 2005-2020 Enthought, Inc., Austin, TX 2# All rights reserved. 3# 4# This software is provided without warranty under the terms of the BSD 5# license included in LICENSE.txt and may be redistributed only under 6# the conditions described in the aforementioned license. The license 7# is also available online at http://www.enthought.com/licenses/BSD.txt 8# 9# Thanks for using Enthought open source! 10# Dummy widget module for testing entrypoints 11 12from traits.api import provides 13from pyface.i_widget import IWidget, MWidget 14 15 16@provides(IWidget) 17class Widget(MWidget): 18 pass 19