mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-09 06:53:59 +00:00
fix: remove unused type ignore from three_values fixture in TestAsyncInMemoryStore (#31895)
This commit is contained in:
@@ -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"
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user