From 2c05d171fcbab75c2baaf5e2fbe0dd29a6cfa260 Mon Sep 17 00:00:00 2001 From: kshitij12345 Date: Sun, 19 May 2019 14:07:36 +0530 Subject: [PATCH] fix py2 import error --- tests/python/unittest/test_higher_order_grad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/python/unittest/test_higher_order_grad.py b/tests/python/unittest/test_higher_order_grad.py index e9d42af36fb9..92c78d15318d 100644 --- a/tests/python/unittest/test_higher_order_grad.py +++ b/tests/python/unittest/test_higher_order_grad.py @@ -19,7 +19,7 @@ from mxnet import nd, autograd from mxnet.test_utils import assert_almost_equal, random_arrays -from tests.python.unittest.common import with_seed +from common import with_seed @with_seed()