class Person:
name = "Foo"
name = name + " Bar"
with unsafe fixes applied becomes:
class Person:
name = "Foo"
It may not be the cleanest way of writing that, but it probably shouldn't trigger.
class Person:
names = ["Foo"]
names = names + ["Bar"]
is a use case I've actually seen in real code that probably should not be flagged.
ruff version is 0.1.4.