Some functions return the self object. In this case, the object is an instance at an address. We want to ignore this output:
I found it easier to simply assign the unneeded return values to a variable:
>>> _ = do_something()
>>> check_something()
True