A double quote byte string (b") was not terminated.
b"
Erroneous code example:
let s = b"; // error!
To fix this error, add the missing double quote at the end of the string:
let s = b""; // ok!
Back to list of error codes