cclauss commented on a change in pull request #12052: Fix undefined_variable
lint errors in examples
URL: https://github.com/apache/incubator-mxnet/pull/12052#discussion_r207964850
##########
File path: example/gluon/image_classification.py
##########
@@ -30,7 +30,8 @@
from mxnet.metric import Accuracy, TopKAccuracy, CompositeEvalMetric
import numpy as np
-from data import *
+from data import get_cifar10_iterator, get_imagenet_iterator
+from data import get_caltech101_iterator, dummy_iterator
Review comment:
```python
from data import (get_cifar10_iterator, get_imagenet_iterator,
get_caltech101_iterator, dummy_iterator)
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services