More relative imports, Travis w/ Py3.3

Jonathan Frederic 13 years ago
parent 2c3d80c275
commit e9fe606ba6

@ -13,7 +13,7 @@ Represents a boolean using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool, List
#-----------------------------------------------------------------------------

@ -17,7 +17,7 @@ click events on the button and trigger backend code when the clicks are fired.
import inspect
import types
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool, Int
#-----------------------------------------------------------------------------

@ -13,7 +13,7 @@ Represents a container that can be used to group other widgets.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool
#-----------------------------------------------------------------------------

@ -13,7 +13,7 @@ Represents an unbounded float using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Float, Bool, List
#-----------------------------------------------------------------------------

@ -13,7 +13,7 @@ Represents an unbounded int using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Int, Bool, List
#-----------------------------------------------------------------------------

@ -14,7 +14,7 @@ pages.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Dict, Int
#-----------------------------------------------------------------------------

@ -13,7 +13,7 @@ Represents an enumeration using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, List, Bool
#-----------------------------------------------------------------------------

@ -13,7 +13,7 @@ Represents a unicode string using a widget.
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from widget import Widget
from .widget import Widget
from IPython.utils.traitlets import Unicode, Bool, List
#-----------------------------------------------------------------------------

Loading…
Cancel
Save