I call it SqlTuple, because it helped me get around using IN operator for raw SQL-queries
class SqlTuple(tuple):
def __repr__(self) -> str:
return f'({", ".join(map(repr, self))})'
a = SqlTuple((1,))
print(a) # (1)
b = SqlTuple([1, 2])
print(b) # (1, 2)