Skip to content

Commit ad9ec51

Browse files
author
Aman Sharma
committed
decorate concat in concat.py with set_module('pandas')
1 parent fae3e80 commit ad9ec51

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/core/reshape/concat.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
from pandas._libs import lib
2020
from pandas.util._exceptions import find_stack_level
21+
from pandas.util._decorators import set_module
2122

2223
from pandas.core.dtypes.common import (
2324
is_bool,
@@ -149,6 +150,7 @@ def concat(
149150
) -> DataFrame | Series: ...
150151

151152

153+
@set_module("pandas")
152154
def concat(
153155
objs: Iterable[Series | DataFrame] | Mapping[HashableT, Series | DataFrame],
154156
*,

0 commit comments

Comments
 (0)