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
{{ message }}
This repository was archived by the owner on Apr 26, 2024. It is now read-only.
If/when synapse drops support for 3.5, convert all brace-formatting ("{}".format(obj), percent-formatting ("%s" % obj) and string concatenations ("object:" + obj") with f-strings (f"{obj}")
This approach is cleaner and less bug-prone as variable reference and exacting string template is combined into one.
(When synapse drops support for 3.5, i'd be happy to take up the task of converting everything)