Skip to content

Commit

Permalink
Merge pull request #29 from stewart123579/fix/clean-local-imports
Browse files Browse the repository at this point in the history
Changed absolute imports to explicit
  • Loading branch information
manavsehgal committed Dec 3, 2017
2 parents c994b0c + 12e1b30 commit b97b56b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions speedml/__init__.py
Expand Up @@ -6,11 +6,11 @@
print_function, unicode_literals)
from builtins import *

from speedml.base import Base
from speedml.plot import Plot
from speedml.feature import Feature
from speedml.xgb import Xgb
from speedml.model import Model
from .base import Base
from .plot import Plot
from .feature import Feature
from .xgb import Xgb
from .model import Model

import numpy as np
import pandas as pd
Expand Down
4 changes: 2 additions & 2 deletions speedml/feature.py
Expand Up @@ -6,8 +6,8 @@
print_function, unicode_literals)
from builtins import *

from speedml.base import Base
from speedml.util import DataFrameImputer
from .base import Base
from .util import DataFrameImputer

import numpy as np
from sklearn.preprocessing import LabelEncoder
Expand Down
2 changes: 1 addition & 1 deletion speedml/model.py
Expand Up @@ -6,7 +6,7 @@
print_function, unicode_literals)
from builtins import *

from speedml.base import Base
from .base import Base

import pandas as pd
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion speedml/plot.py
Expand Up @@ -6,7 +6,7 @@
print_function, unicode_literals)
from builtins import *

from speedml.base import Base
from .base import Base

import numpy as np
import pandas as pd
Expand Down
2 changes: 1 addition & 1 deletion speedml/xgb.py
Expand Up @@ -6,7 +6,7 @@
print_function, unicode_literals)
from builtins import *

from speedml.base import Base
from .base import Base

import pandas as pd
import numpy as np
Expand Down

0 comments on commit b97b56b

Please sign in to comment.