Skip to content

Commit

Permalink
#8 Fixed utils imports for pymdb models
Browse files Browse the repository at this point in the history
  • Loading branch information
zembrodt committed Dec 10, 2019
1 parent e4210c8 commit 9b4b5a6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pymdb/models/company.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
All information for the classes here will be scraped from IMDb web pages.
"""

from pymdb.utils import is_int
from ..utils import is_int


class CompanyScrape:
Expand Down
2 changes: 1 addition & 1 deletion pymdb/models/name.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from the web pages. Otherwise, they are gathered from the datasets.
"""

from pymdb.utils import (
from ..utils import (
is_float,
is_int,
to_datetime
Expand Down
2 changes: 1 addition & 1 deletion pymdb/models/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
for various GET requests for their search results.
"""

from pymdb.utils import (
from ..utils import (
is_int
)
from functools import total_ordering
Expand Down
2 changes: 1 addition & 1 deletion pymdb/models/title.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from the web pages. Otherwise, they are gathered from the datasets.
"""

from pymdb.utils import (
from ..utils import (
is_float,
is_int,
to_bool,
Expand Down

0 comments on commit 9b4b5a6

Please sign in to comment.