sourcery-ai / sourcery

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

replace-with-f-string fooled by """multiline strings""" #317

Open ctwardy opened 1 year ago

ctwardy commented 1 year ago

Checklist

Description

I love replace-with-f-string for cleaning old code. But today I was sad that it couldn't automatically fix some horrible multi-line sql concatenations.

Simple example:

It sees this:

temp = "yes we can: " + filename

It cannot see this:

  temp = """oh no
    a multiline string!""" + filename