mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
More relative imports, Travis w/ Py3.3
This commit is contained in:
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…
Reference in New Issue
Block a user