What is the output of the code snippet below?
class Test1 (object):
    pass
class Test2 (Test1):
    pass
a = Test1()
b = Test2()
print(type(b) is Test1)

Question difficulty: 🌶🌶🌶 🌶🌶