Skip to content
Snippets Groups Projects
Commit f3070275 authored by Sushil BHATTACHARJEE's avatar Sushil BHATTACHARJEE
Browse files

removed package-name in import statements

parent c1778082
No related branches found
No related tags found
1 merge request!4User guide
Pipeline #
...@@ -87,7 +87,7 @@ def main(user_input=None): ...@@ -87,7 +87,7 @@ def main(user_input=None):
if args['--verbose'] == 1: logging.getLogger().setLevel(logging.INFO) if args['--verbose'] == 1: logging.getLogger().setLevel(logging.INFO)
elif args['--verbose'] >= 2: logging.getLogger().setLevel(logging.DEBUG) elif args['--verbose'] >= 2: logging.getLogger().setLevel(logging.DEBUG)
from bob.ip.facelandmarks.utils import detect_landmarks, draw_landmarks, save_landmarks from ..utils import detect_landmarks, draw_landmarks, save_landmarks
data = bob.io.base.load(args['<input>']) data = bob.io.base.load(args['<input>'])
top = int(args['--limit-to']) top = int(args['--limit-to'])
......
...@@ -13,8 +13,8 @@ import pkg_resources ...@@ -13,8 +13,8 @@ import pkg_resources
import bob.io.base import bob.io.base
import bob.io.base.test_utils import bob.io.base.test_utils
from bob.ip.facelandmarks.utils import detect_landmarks, draw_landmarks, save_landmarks, Result from .utils import detect_landmarks, draw_landmarks, save_landmarks, Result
from bob.ip.facelandmarks.utils import detect_landmarks_on_boundingbox from .utils import detect_landmarks_on_boundingbox
from .script.detect_landmarks import main as app from .script.detect_landmarks import main as app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment