Update __ini__.py to be supported in python 2 and 3

release/4.3a0
Ellon Mendes 2015-11-28 00:37:53 +01:00
parent 72bcc4f08e
commit 09ec306013
3 changed files with 5 additions and 5 deletions

View File

@ -1,2 +1,2 @@
from _libgtsam_python import *
import utils
from ._libgtsam_python import *
from . import utils

View File

@ -1,2 +1,2 @@
from SFMdata import *
from VisualISAM2Example import *
from . import SFMdata
from . import VisualISAM2Example

View File

@ -1 +1 @@
from _plot import *
from ._plot import *