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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ class TestAsyncInMemoryStore(BaseStoreAsyncTests):
return InMemoryStore() return InMemoryStore()
@pytest.fixture @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" return "value1", "value2", "value3"