Skip to content

Commit 47fda0f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
1 parent 6087a97 commit 47fda0f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

stdlib/json/decoder.pyi

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
from _typeshed import Incomplete
12
from collections.abc import Callable
23
from typing import Any
3-
from _typeshed import Incomplete
44

55
__all__ = ["JSONDecoder", "JSONDecodeError"]
66

@@ -20,14 +20,13 @@ def JSONObject(
2020
object_pairs_hook: Callable[[Incomplete], Incomplete] | None,
2121
memo: dict[Incomplete, Incomplete] | None = None,
2222
_w: Callable[[str, int], Incomplete] = ...,
23-
_ws: str = ...
23+
_ws: str = ...,
2424
) -> tuple[Incomplete, int]: ...
25-
2625
def JSONArray(
2726
s_and_end: tuple[str, int],
2827
scan_once: Callable[[Incomplete], Incomplete],
2928
_w: Callable[[str, int], Incomplete] = ...,
30-
_ws: str = ...
29+
_ws: str = ...,
3130
) -> tuple[list[Incomplete], int]: ...
3231

3332
class JSONDecoder:

0 commit comments

Comments
 (0)