From b3fc358f9a19d0e56549aa9502370063c4792eac Mon Sep 17 00:00:00 2001 From: Henneking Date: Thu, 27 Jul 2017 14:05:11 -0700 Subject: [PATCH] fix lint --- python/mxnet/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mxnet/test_utils.py b/python/mxnet/test_utils.py index 306dea04faf0..ca1e8415f7ee 100644 --- a/python/mxnet/test_utils.py +++ b/python/mxnet/test_utils.py @@ -116,7 +116,7 @@ def rand_shape_3d(dim0=10, dim1=10, dim2=10): def rand_shape_nd(n, dim=10): - return rnd.randint(1, dim+1, size=n) + return rnd.randint(1, dim+1, size=n) def np_reduce(dat, axis, keepdims, numpy_reduce_func):