sourcery icon indicating copy to clipboard operation
sourcery copied to clipboard

`/=` Refactoring

Open Anselmoo opened this issue 1 year ago • 3 comments

Checklist

  • [x] I think this refactoring is useful for everyone (if it's too specific, consider a custom rule)
  • [x] Didn't find a similar issue

Description

Sourcery suggests -= and +=, however not /=.

Code Before

a = a / 2

Code After

a /= 2

Anselmoo avatar Nov 30 '22 19:11 Anselmoo