```python x = 0 y = 1 if x() == -y: print("THAT") ``` turns into: ```python x = 0 y = 1 if x() == - y: print("THAT") ``` @brettcannon please confirm this is a bug. Based on my knowledge of Pep8 this is wrong.