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
I found calling of @Appender() are using % to format string. I think it might be better to replace with .format based on PEP 3101 and a discussion on Stack Overflow.
#29547 is working on replacing % with f-strings. This change would also help to keep the code more consistent in string template. Be more specific, the template using % to formate will be something like %(XXX)s, but using .format and f-strings will be the same as {XXX}.