(index: Index)
| 1850 | |
| 1851 | |
| 1852 | def _has_names(index: Index) -> bool: |
| 1853 | if isinstance(index, MultiIndex): |
| 1854 | return com.any_not_none(*index.names) |
| 1855 | else: |
| 1856 | return index.name is not None |
| 1857 | |
| 1858 | |
| 1859 | class EngFormatter: |
no outgoing calls
no test coverage detected