Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 232 Bytes

File metadata and controls

13 lines (9 loc) · 232 Bytes

A double quote byte string (b") was not terminated.

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!