msemple1111 / kahoot-hack

A suite of tools for easily manipulating the kahoot.it quiz platform
GNU General Public License v3.0
65 stars 27 forks source link

Error in code #37

Closed RedYetiDev closed 3 years ago

RedYetiDev commented 3 years ago

Hello, in the main.py file, line 133, your code states def solve_kahoot_challenge(self, dataChallenge):, it should state def solve_kahoot_challenge(self, challenge): in order for the rest of the function to run correctly

Also, in the main.py file, line 154, your code states return array.array('B',bytes_list).tostring().decode("ASCII"), whereas it should state return array.array('B',bytes_list).tobytes().decode("ASCII"). Please correct the errors.

From, A fellow GitHub contributor

RedYetiDev commented 3 years ago

Please refer to the pull request