File tree 1 file changed +3
-3
lines changed
pandas-stubs/core/reshape
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ from pandas._typing import (
24
24
25
25
@overload
26
26
def concat (
27
- objs : Iterable [DataFrame ] | Mapping [HashableT1 , DataFrame ],
27
+ objs : Iterable [DataFrame | None ] | Mapping [HashableT1 , DataFrame ],
28
28
* ,
29
29
axis : AxisIndex = ...,
30
30
join : Literal ["inner" , "outer" ] = ...,
@@ -38,7 +38,7 @@ def concat(
38
38
) -> DataFrame : ...
39
39
@overload
40
40
def concat (
41
- objs : Iterable [Series ] | Mapping [HashableT1 , Series ],
41
+ objs : Iterable [Series | None ] | Mapping [HashableT1 , Series ],
42
42
* ,
43
43
axis : AxisIndex = ...,
44
44
join : Literal ["inner" , "outer" ] = ...,
@@ -52,7 +52,7 @@ def concat(
52
52
) -> Series : ...
53
53
@overload
54
54
def concat (
55
- objs : Iterable [Series | DataFrame ] | Mapping [HashableT1 , Series | DataFrame ],
55
+ objs : Iterable [Series | DataFrame | None ] | Mapping [HashableT1 , Series | DataFrame ],
56
56
* ,
57
57
axis : AxisColumn ,
58
58
join : Literal ["inner" , "outer" ] = ...,
You can’t perform that action at this time.
0 commit comments