consider-using-augmented-assign / R6104ΒΆ
Message emitted:
Use '%s' to do an augmented assign directly
Description:
Emitted when an assignment is referring to the object that it is assigning to. This can be changed to be an augmented assign. Disabled by default!
Caution
This message is disabled by default. To enable it, add consider-using-augmented-assign to the enable option.
Problematic code:
x = 1
x = x + 1 # [consider-using-augmented-assign]
Correct code:
x = 1
x += 1
Note
- This message is emitted by the optional 'code_style'
checker which requires the
pylint.extensions.code_styleplugin to be loaded.
Created by the code_style checker.