Skip to content

Commit

Permalink
more typing annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Jan 28, 2024
1 parent ff59205 commit 0f8cb22
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_mesc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@
Generator,
Mapping,
cast,
Union,
)
import pytest

import generate
from mesc.types import EndpointQuery, MultiEndpointQuery, RpcConfig
from mesc.types import RpcConfig, MescQuery


# tests are in form [test_name, env, config, query, result, should_succeed]
Test = tuple[
str,
dict[str, str],
RpcConfig,
None | EndpointQuery | MultiEndpointQuery,
Union[None, MescQuery],
Any,
bool,
]
Expand Down

0 comments on commit 0f8cb22

Please sign in to comment.