Skip to content

Commit 049a69f

Browse files
committed
MAINT: Fix dict item entry
1 parent c0c53bc commit 049a69f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/qcproperties/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
@pytest.fixture()
8-
def data_grid(testdata_path: Path) -> dict[str, str | dict[str, dict[str, str]]]:
8+
def data_grid(testdata_path: Path) -> dict[str, str | dict[str, dict[str, str]] | int]:
99
return {
1010
"path": abspath(testdata_path / "3dgrids/reek/"),
1111
"grid": "reek_sim_grid.roff",
@@ -24,7 +24,7 @@ def data_grid(testdata_path: Path) -> dict[str, str | dict[str, dict[str, str]]]
2424
@pytest.fixture()
2525
def data_wells(
2626
testdata_path: Path,
27-
) -> dict[str, str | list[str] | dict[str, dict[str, str]]]:
27+
) -> dict[str, str | list[str] | dict[str, dict[str, str]] | int]:
2828
return {
2929
"path": abspath(testdata_path / "wells/reek/1/"),
3030
"wells": ["OP_*.w"],
@@ -43,7 +43,7 @@ def data_wells(
4343
@pytest.fixture()
4444
def data_bwells(
4545
testdata_path: Path,
46-
) -> dict[str, str | list[str] | dict[str, dict[str, str]]]:
46+
) -> dict[str, str | list[str] | dict[str, dict[str, str]] | int]:
4747
return {
4848
"path": abspath(testdata_path / "wells/reek/1/"),
4949
"wells": ["OP_1.bw"],

0 commit comments

Comments
 (0)