all: Update formatting for new Black version 22.1.0.

Signed-off-by: Damien George <damien@micropython.org>
pull/493/head
Damien George 2022-03-22 13:30:34 +11:00
rodzic cdd260f079
commit 64b8817c0d
4 zmienionych plików z 10 dodań i 10 usunięć

Wyświetl plik

@ -63,7 +63,7 @@ __all__ = [
# regex based decoder.
_q_byte_subber = functools.partial(
re.compile(br"=([a-fA-F0-9]{2})").sub, lambda m: bytes([int(m.group(1), 16)])
re.compile(rb"=([a-fA-F0-9]{2})").sub, lambda m: bytes([int(m.group(1), 16)])
)