Hi, first of all it's really cool and I was thinking in do this tool but I found yours, I'll contribute here.
The issue is when there is a \n in the string doesn't work.
Also should respect the multiline, because if I have something like:
print(
"hello %s, "
"my name is %s" % (world, jordi)
)
It's converted to print(f"hello {world}, my name is {jordi}"), it's correct but it isn't respect the multiline.
Hi, first of all it's really cool and I was thinking in do this tool but I found yours, I'll contribute here.
The issue is when there is a \n in the string doesn't work.
Also should respect the multiline, because if I have something like:
It's converted to
print(f"hello {world}, my name is {jordi}"), it's correct but it isn't respect the multiline.