Pattern: Use of lstrip.rstrip
instead of strip
Issue: -
This rule identifies places where lstrip.rstrip
can be replaced by strip
.
# bad
'abc'.lstrip.rstrip
'abc'.rstrip.lstrip
# good
'abc'.strip
Pattern: Use of lstrip.rstrip
instead of strip
Issue: -
This rule identifies places where lstrip.rstrip
can be replaced by strip
.
# bad
'abc'.lstrip.rstrip
'abc'.rstrip.lstrip
# good
'abc'.strip