platipus9999/Tiktok-Bot

ValueError: invalid literal for int() with base 10:

Closed this issue · 1 comments

solved, just convert to string in line 197
from :
self.choice = int(input(self._print('?', 'Choice a service > ', input=True)))
to :
self.choice = int(str(input(self._print('?', 'Choice a service > ', input=True))))