sourcery-ai / sourcery

Instant AI code reviews
https://sourcery.ai
MIT License
1.51k stars 65 forks source link

Replace one item element slice for sequences like str with first slice index #294

Open Gobot1234 opened 1 year ago

Gobot1234 commented 1 year ago

Checklist

Description

For "hello world"[4:5] this can be safely replaced with "hello world"[4] and I think the intent is much clearer. There might be other sequences this can be applied to but I'm not currently aware of any.

Code Before

"hello world"[4:5]

Code After

"hello world"[4]
Hellebore commented 1 year ago

Thanks - I've added this to our backlog.