1

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.

user3398900
  • 795
  • 2
  • 13
  • 31

1 Answers1

0

Your code is correct.

You are suffering a known issue of pylint.

Gallaecio
  • 3,620
  • 2
  • 25
  • 64