File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -29,25 +29,25 @@ else:
29
29
if sys .version_info >= (3 , 10 ):
30
30
def pp (
31
31
object : object ,
32
- stream : IO [str ] | None = ... ,
33
- indent : int = ... ,
34
- width : int = ... ,
35
- depth : int | None = ... ,
32
+ stream : IO [str ] | None = None ,
33
+ indent : int = 1 ,
34
+ width : int = 80 ,
35
+ depth : int | None = None ,
36
36
* ,
37
- compact : bool = ... ,
37
+ compact : bool = False ,
38
38
sort_dicts : bool = False ,
39
- underscore_numbers : bool = ... ,
39
+ underscore_numbers : bool = False ,
40
40
) -> None : ...
41
41
42
42
else :
43
43
def pp (
44
44
object : object ,
45
- stream : IO [str ] | None = ... ,
46
- indent : int = ... ,
47
- width : int = ... ,
48
- depth : int | None = ... ,
45
+ stream : IO [str ] | None = None ,
46
+ indent : int = 1 ,
47
+ width : int = 80 ,
48
+ depth : int | None = None ,
49
49
* ,
50
- compact : bool = ... ,
50
+ compact : bool = False ,
51
51
sort_dicts : bool = False ,
52
52
) -> None : ...
53
53
You can’t perform that action at this time.
0 commit comments