We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e22fe91 commit 4310e6cCopy full SHA for 4310e6c
tests/prague/eip7685_general_purpose_el_requests/test_multi_type_requests.py
@@ -105,7 +105,7 @@ def single_consolidation_from_contract(i: int) -> ConsolidationRequestContract:
105
def get_permutations(
106
n: int = 3,
107
) -> Generator[
108
- ParameterSet,
+ DepositRequest | WithdrawalRequest | ConsolidationRequest,
109
None,
110
111
]:
@@ -125,7 +125,7 @@ def get_permutations(
125
),
126
]
127
for perm in permutations(requests, n):
128
- yield pytest.param([p[1] for p in perm], id="+".join([p[0] for p in perm]))
+ yield pytest.param([p[1] for p in perm], id="+".join([p[0] for p in perm])) # type: ignore
129
130
131
def get_eoa_permutations(n: int = 3) -> Generator[ParameterSet, None, None]:
0 commit comments