This is my code: ``` next if block_given? && (!yield f) ``` Rubocop 1.80 says this: ``` C: [Correctable] Style/RedundantParentheses: Don't use parentheses around a unary operation. next if block_given? && (!yield f) ``` However, I can't remove parentheses and not break the syntax