fix: remove unused type ignore from three_values fixture in TestAsyncInMemoryStore (#31895)

This commit is contained in:
Mason Daugherty
2025-07-07 13:22:53 -04:00
committed by GitHub
parent 8ef01f8444
commit a751a23c4e

View File

@@ -24,7 +24,7 @@ class TestAsyncInMemoryStore(BaseStoreAsyncTests):
return InMemoryStore()
@pytest.fixture
def three_values(self) -> tuple[str, str, str]: # type: ignore[override]
def three_values(self) -> tuple[str, str, str]:
return "value1", "value2", "value3"