Pattern: Parentheses for method call with no arguments
Issue: -
This rule checks for unwanted parentheses in parameterless method calls.
# bad
object.some_method()
# good
object.some_method
Pattern: Parentheses for method call with no arguments
Issue: -
This rule checks for unwanted parentheses in parameterless method calls.
# bad
object.some_method()
# good
object.some_method