(self, name)
| 32 | return name |
| 33 | |
| 34 | def map_encoding_name(self, name): |
| 35 | if name in ENCODINGS_MAPPING: |
| 36 | return ENCODINGS_MAPPING[name] |
| 37 | return name |
| 38 | |
| 39 | def clean_end_to_end_file(self, file_path): |
| 40 | with open(file_path, 'r') as file: |
nothing calls this directly
no outgoing calls
no test coverage detected