mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-27 14:25:16 +02:00
[plotting] py3 compatibility, is it right, that relative imports always have to be in the format from . import <.>
This commit is contained in:
parent
07c0284666
commit
3815658cc4
3 changed files with 3 additions and 3 deletions
|
|
@ -1 +1 @@
|
||||||
import controllers
|
from .import controllers
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
import axis_event_controller, imshow_controller
|
from . import axis_event_controller, imshow_controller
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ Created on 24 Jul 2013
|
||||||
|
|
||||||
@author: maxz
|
@author: maxz
|
||||||
'''
|
'''
|
||||||
from axis_event_controller import BufferedAxisChangedController
|
from .axis_event_controller import BufferedAxisChangedController
|
||||||
import itertools
|
import itertools
|
||||||
import numpy
|
import numpy
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue