File tree Expand file tree Collapse file tree 2 files changed +531
-38
lines changed
third_party/bigframes_vendored/pandas/core/indexes Expand file tree Collapse file tree 2 files changed +531
-38
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ def name(self, value: blocks.Label):
134134
135135 @property
136136 def names (self ) -> typing .Sequence [blocks .Label ]:
137- """Returns the names of the Index."""
138137 return self ._block ._index_labels
139138
140139 @names .setter
@@ -175,7 +174,6 @@ def dtypes(self) -> pandas.Series:
175174
176175 @property
177176 def size (self ) -> int :
178- """Returns the size of the Index."""
179177 return self .shape [0 ]
180178
181179 @property
@@ -186,12 +184,6 @@ def empty(self) -> bool:
186184 @property
187185 @validations .requires_ordering ()
188186 def is_monotonic_increasing (self ) -> bool :
189- """
190- Return a boolean if the values are equal or increasing.
191-
192- Returns:
193- bool
194- """
195187 return typing .cast (
196188 bool ,
197189 self ._block .is_monotonic_increasing (self ._block .index_columns ),
You can’t perform that action at this time.
0 commit comments