-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Labels
Description
Thanks for making this really helpful tool! I did find one problem:
Input:
d = "dog"
msg = (
"The quick brown fox jumps over the lazy dog "
"The quick brown fox jumps over the lazy {}".format(d)
)
Expected output:
d = "dog"
msg = (
"The quick brown fox jumps over the lazy dog "
f"The quick brown fox jumps over the lazy {d}"
)
Actual output:
Same as input - unchanged. Adding -tc -tj -a
makes no difference.