Skip to content

Commit bf2d2fe

Browse files
committed
Fix generator return type mypy
1 parent c0090d4 commit bf2d2fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphdatascience/tests/integration/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def runner(neo4j_driver: Driver) -> Neo4jQueryRunner:
4545

4646

4747
@pytest.fixture(scope="package", autouse=False)
48-
def auradb_runner() -> Neo4jQueryRunner:
48+
def auradb_runner() -> Generator[Neo4jQueryRunner, None, None]:
4949
driver = GraphDatabase.driver(AURA_DB_URI, auth=AURA_DB_AUTH)
5050

5151
_runner = Neo4jQueryRunner(driver)

0 commit comments

Comments
 (0)