You just need to decode the string back into ASCII, so it would just be:
bytes_string.decode('UTF-8')
Demo:
>>> b'somestring'.decode('UTF-8')
'somestring'
You just need to decode the string back into ASCII, so it would just be:
bytes_string.decode('UTF-8')
Demo:
>>> b'somestring'.decode('UTF-8')
'somestring'