(format: str)
| 136 | |
| 137 | |
| 138 | def internal_read_method(format: str) -> ReadMethod: |
| 139 | if format in ( |
| 140 | "binary", |
| 141 | "plaintext_by_file", |
| 142 | "plaintext_by_object", |
| 143 | "only_metadata", |
| 144 | ): |
| 145 | return ReadMethod.FULL |
| 146 | return ReadMethod.BY_LINE |
| 147 | |
| 148 | |
| 149 | class CsvParserSettings: |
no outgoing calls
no test coverage detected