We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Take an example res = "here" + r"\there", the diff from flynt -tc is:
res = "here" + r"\there"
flynt -tc
1c1 < res = "here" + r"\there" --- > res = f"here\\there"
while this isn't an error, it is surprisingly transformed to a f-string with nothing to format.
An expected result would be either:
res = "here\\there" # or res = r"here\there"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Take an example
res = "here" + r"\there"
, the diff fromflynt -tc
is:while this isn't an error, it is surprisingly transformed to a f-string with nothing to format.
An expected result would be either:
The text was updated successfully, but these errors were encountered: