You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When having f strings without any substitutions sourcery recommends converting into string. While the suggestion is good, the resulting conversion is not always good, especially if you are using escaped chars in strings:
Example:
print(f"Hello\tworld")
will result into after conversion:
print("Hello\\tworld")
Sourcery Version
0.11.1
Code editor or IDE name and version
Pycharm 2021.3.3
OS name and version
OSX
The text was updated successfully, but these errors were encountered:
Issue description or question
When having f strings without any substitutions sourcery recommends converting into string. While the suggestion is good, the resulting conversion is not always good, especially if you are using escaped chars in strings:
Example:
will result into after conversion:
Sourcery Version
0.11.1
Code editor or IDE name and version
Pycharm 2021.3.3
OS name and version
OSX
The text was updated successfully, but these errors were encountered: