PyCharm PEP 8: Continuation line under-indented for visual indent
2
My code runs perfectly but PyCharm keep showing me the same warning: PEP 8: Continuation line under-indented for visual indent When I click on this warning it takes me to an indent between these two methods: def _get_text(self): return textract.process(self.path).decode().replace('', '') def show(self): print(self._get_text()) What's wrong here?
python pycharm pep8
share | improve this question
asked Nov 21 '18 at 11:57
Desiigner Desiigner
383 1 9
...