From 1343473b6a2de076e12a31702e915f29625de2be Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 18:12:35 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_decoder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_decoder.py b/tests/test_decoder.py index 485c604..25e0c6b 100644 --- a/tests/test_decoder.py +++ b/tests/test_decoder.py @@ -831,14 +831,14 @@ def test_load_from_file(impl, tmpdir): def test_nested_dict(impl): value = impl.loads(unhexlify("A1D9177082010201")) - assert type(value) is dict # noqa: E721 + assert type(value) is dict assert value == {impl.CBORTag(6000, (1, 2)): 1} def test_set(impl): payload = unhexlify("d9010283616361626161") value = impl.loads(payload) - assert type(value) is set # noqa: E721 + assert type(value) is set assert value == {"a", "b", "c"}