This felt most readable for me:
event1, event2 = [call.args[0] for call in mocked_method.call_args_list]
While the call object is messy, it does make it easier to separate the args and kwargs compared to if it was just a tuple.