def shuffle(self) -> None: """Randomly shuffle the order of responses while preserving the list.""" import random random.shuffle(self.responses)