Return discovered schema information per CSV type.
(self)
| 124 | return None |
| 125 | |
| 126 | def get_schema_info(self) -> Dict[str, List[Tuple[str, str]]]: |
| 127 | """Return discovered schema information per CSV type.""" |
| 128 | if not self.schema_info: |
| 129 | self.discover_columns() |
| 130 | return self.schema_info |
| 131 | |
| 132 | def get_csv_files(self, pattern: str) -> List[Path]: |
| 133 | """List CSV files matching pattern""" |
no test coverage detected