I'm having a hard time trying to fix this piece of code in order for it to fit PEP8's guidelines. I have tried breaking the line with a backslash and then enclosing it with a set of brackets. Furthermore, I made sure that the second line came right after the position first right bracket.
if (len(self._stools[origin]) > 0 and len(self._stools[dest]) and
self.top_cheese(origin).size > self.top_cheese(dest).size):
raise IllegalMoveError
Thus, every time I run pep8.py on this piece of code I get:
TOAHModel.py:94:14: E127 continuation line over-indented for visual indent.