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:
2929if sys .version_info >= (3 , 10 ):
3030 def pp (
3131 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 ,
3636 * ,
37- compact : bool = ... ,
37+ compact : bool = False ,
3838 sort_dicts : bool = False ,
39- underscore_numbers : bool = ... ,
39+ underscore_numbers : bool = False ,
4040 ) -> None : ...
4141
4242else :
4343 def pp (
4444 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 ,
4949 * ,
50- compact : bool = ... ,
50+ compact : bool = False ,
5151 sort_dicts : bool = False ,
5252 ) -> None : ...
5353
You can’t perform that action at this time.
0 commit comments