Open
Description
Describe the problem, ie expected/actual result (if it's not blatantly obvious)
No response
Gist to reproduce
from typing import TypeVar
_T = TypeVar("_T", bound=int)
def asdf(a: _T, b: int):
print(f"{a}") # error: The type "_T@asdf" doesn't define a __format__, __str__ or __repr__ [helpful-string]
print(f"{b}")