mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
4 lines
165 B
Python
4 lines
165 B
Python
current_sum = 1
|
|
numbers = [1, 2, 3]
|
|
<weak_warning descr="Assignment can be replaced with augmented assignment">current_sum = current_sum + numbers[0]</weak_warning>
|