Back to Intellij Community

PyAugmentAssignmentInspection

python/python-psi-impl/resources/inspectionDescriptions/PyAugmentAssignmentInspection.html

2025.3-rc-2197 B
Original Source

Reports assignments that can be replaced with augmented assignments.

Example:

a = 23
b = 3
a = a + b

After the quick-fix is applied, the code changes to:

a = 23
b = 3
a += b