diff --git a/tests/smart/modules/test_autooff.py b/tests/smart/modules/test_autooff.py index b8042aa6..9bdf9e56 100644 --- a/tests/smart/modules/test_autooff.py +++ b/tests/smart/modules/test_autooff.py @@ -1,6 +1,5 @@ from __future__ import annotations -import sys from datetime import datetime import pytest @@ -25,10 +24,6 @@ autooff = parametrize( ("auto_off_at", "auto_off_at", datetime | None), ], ) -@pytest.mark.skipif( - sys.version_info < (3, 10), - reason="Subscripted generics cannot be used with class and instance checks", -) async def test_autooff_features( dev: SmartDevice, feature: str, prop_name: str, type: type ):