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 af79ef8 commit bb04065Copy full SHA for bb04065
tests/units/test_state.py
@@ -2819,8 +2819,8 @@ class UnionState(BaseState):
2819
str(UnionState.c3.c2r.c1.foo) == f'{UnionState.c3!s}?.["c2r"]?.["c1"]?.["foo"]' # pyright: ignore [reportOptionalMemberAccess]
2820
)
2821
assert (
2822
- str(UnionState.c3.c2r.c1r.foo)
2823
- == f'{UnionState.c3!s}?.["c2r"]?.["c1r"]?.["foo"]' # pyright: ignore [reportOptionalMemberAccess]
+ str(UnionState.c3.c2r.c1r.foo) # pyright: ignore [reportOptionalMemberAccess]
+ == f'{UnionState.c3!s}?.["c2r"]?.["c1r"]?.["foo"]'
2824
2825
assert str(UnionState.c3i.c2) == f'{UnionState.c3i!s}?.["c2"]'
2826
assert str(UnionState.c3r.c2) == f'{UnionState.c3r!s}?.["c2"]'
0 commit comments