pylint-errors

W1402 (anomalous-unicode-escape-in-string)

:x: Problematic code:

print(b'\u{0}'.format('0394'))

:heavy_check_mark: Correct code:

print(b'\\u{0}'.format('0394'))

Rationale:

Used when an escape like \u is encountered in a byte string where it has no effect.