Skip to content

Commit e2537a5

Browse files
committed
linting
1 parent c49dcec commit e2537a5

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/test_natype.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,11 @@ def test_arithmetic() -> None:
101101
# https://github.com/microsoft/pyright/issues/10899.
102102
check(
103103
assert_type(
104-
divmod(na, 1), tuple[NAType, NAType]
105-
), # pyright: ignore[reportArgumentType, reportCallIssue, reportAssertTypeFailure]
104+
divmod( # pyright: ignore[reportCallIssue, reportAssertTypeFailure]
105+
na, 1 # pyright: ignore[reportArgumentType]
106+
),
107+
tuple[NAType, NAType],
108+
),
106109
tuple,
107110
)
108111

0 commit comments

Comments
 (0)