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
This is a simple script that attempts to replace
f-strings (f"text {variable}") with alternatives
compatible with earlier python versions
(such as "text {}".format(variable)).
Usage:
python3 fstring-downgrade.py test.py
About
Replace f-strings with Python<3.6 compatible alternatives