Fix ruff error (#114364)

This commit is contained in:
Marc Mueller 2024-03-28 10:31:42 +01:00 committed by GitHub
parent 393dc289c4
commit a29dc86f62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1001,7 +1001,7 @@ async def test_quirks_v2_metadata_errors(
# if the device was created we remove it
# so we don't pollute the rest of the tests
zigpy.quirks._DEVICE_REGISTRY.remove(zigpy_device)
except ValueError as e:
except ValueError:
# if the device was not created we remove it
# so we don't pollute the rest of the tests
zigpy.quirks._DEVICE_REGISTRY._registry_v2.pop(
@ -1010,7 +1010,7 @@ async def test_quirks_v2_metadata_errors(
"TRADFRI remote control4",
)
)
raise e
raise
class BadDeviceClass(enum.Enum):