I am facing this situation in pylint 1.9.3
My code exp.py
contains only this line
from six.moves.urllib import parse as urllib
when i run pylint exp.py
then im getting this error
[W0403(relative-import), ] Relative import 'six.moves.urllib', should be 'six.moves'
Any idea on how to fix this??
any help would be of great use..
Thanks in advance.