(self)
| 3932 | self.type = type_api.to_instance(type_) # type: ignore |
| 3933 | |
| 3934 | def _wraps_unnamed_column(self): |
| 3935 | ungrouped = self.element._ungroup() |
| 3936 | return ( |
| 3937 | not isinstance(ungrouped, NamedColumn) |
| 3938 | or ungrouped._non_anon_label is None |
| 3939 | ) |
| 3940 | |
| 3941 | @classmethod |
| 3942 | def _create_nulls_first( |
no test coverage detected