Ruby

Ruby

Made by DeepSource

Grouped parentheses found in function calls RB-LI1043

Style
Major
Autofix

Do not put a space between method name and left parenthesis, it makes the code ambiguous to read.

Bad practice

puts (x + y)

Recommended

puts(x + y)