Skip to content

Commit a751a23

Browse files
authored
fix: remove unused type ignore from three_values fixture in TestAsyncInMemoryStore (#31895)
1 parent 8ef01f8 commit a751a23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/core/tests/unit_tests/stores/test_in_memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async def kv_store(self) -> InMemoryStore:
2424
return InMemoryStore()
2525

2626
@pytest.fixture
27-
def three_values(self) -> tuple[str, str, str]: # type: ignore[override]
27+
def three_values(self) -> tuple[str, str, str]:
2828
return "value1", "value2", "value3"
2929

3030

0 commit comments

Comments
 (0)