We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1380df8 commit 66b9095Copy full SHA for 66b9095
pandas/core/internals/concat.py
@@ -5,7 +5,7 @@
5
import numpy as np
6
7
from pandas._libs import NaT, internals as libinternals
8
-from pandas._typing import DtypeObj
+from pandas._typing import DtypeObj, Shape
9
from pandas.util._decorators import cache_readonly
10
11
from pandas.core.dtypes.cast import maybe_promote
@@ -175,7 +175,7 @@ def _get_mgr_concatenation_plan(mgr, indexers):
175
176
177
class JoinUnit:
178
- def __init__(self, block, shape, indexers=None):
+ def __init__(self, block, shape: Shape, indexers=None):
179
# Passing shape explicitly is required for cases when block is None.
180
if indexers is None:
181
indexers = {}
0 commit comments