We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 974fdc3 commit 76c3e5dCopy full SHA for 76c3e5d
pandas/core/indexes/api.py
@@ -44,9 +44,10 @@
44
45
46
def _get_objs_combined_axis(objs, intersect=False, axis=0, sort=True):
47
- # Extract combined index: return intersection or union (depending on the
48
- # value of "intersect") of indexes on given axis, or None if all objects
49
- # lack indexes (e.g. they are numpy arrays)
+ """Extract combined index: return intersection or union (depending on the
+ value of "intersect") of indexes on given axis, or None if all objects
+ lack indexes (e.g. they are numpy arrays)
50
+ """
51
obs_idxes = [obj._get_axis(axis) for obj in objs
52
if hasattr(obj, '_get_axis')]
53
if obs_idxes:
0 commit comments