mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-12 15:59:56 +00:00
fix: remove unused type ignore from three_values fixture in TestAsyncInMemoryStore (#31895)
This commit is contained in:
parent
8ef01f8444
commit
a751a23c4e
@ -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"
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user