Skip to content

Commit 87bcd74

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9c1266f commit 87bcd74

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

python/tests/test_value_converter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -659,9 +659,9 @@ async def test_char_internal_type_byte_spectrum(
659659
value = decoded[i]
660660
assert isinstance(value, str)
661661
assert len(value) == 1
662-
assert (
663-
ord(value) == b
664-
), f"byte 0x{b:02x} round-tripped to ord(value)=0x{ord(value):02x}"
662+
assert ord(value) == b, (
663+
f"byte 0x{b:02x} round-tripped to ord(value)=0x{ord(value):02x}"
664+
)
665665
assert decoded[len(bytes_under_test)] is None
666666

667667

0 commit comments

Comments
 (0)