There is a bug with the method modify_channel_information
It raises with
File "O:\Documents\Code\Git\gimpybot\main.py", line 41, in on_message
await twitch.modify_channel_information(TYLER, id, "en", title)
File "O:\Documents\Code\Git\gimpybot\env\lib\site-packages\twitchAPI\twitch.py", line 1564, in modify_channel_information
'title': title} if v is not None}
File "O:\Documents\Code\Git\gimpybot\env\lib\site-packages\twitchAPI\twitch.py", line 1562, in <dictcomp>
body = {k: v for k, v in {'game_id': game_id,
ValueError: too many values to unpack (expected 2)
there's a missing .items() call in that dict-comprehension
There is a bug with the method
modify_channel_information
It raises with
there's a missing
.items()
call in that dict-comprehension