```py def test(x: int) -> int: if x > 0: # test test abc = x else: # test test test abc = -x return abc ``` ruff --fix # 0.0.213 ```py def test(x: int) -> int: abc = x if x > 0 else -x return abc ```