(self, filepath)
| 90 | |
| 91 | |
| 92 | def write_as_strings(self, filepath): |
| 93 | with open(filepath, "w") as outfile: |
| 94 | self.write_strings_formatted(outfile, key_format="\n [{}]\n", line_format=" {} = {}\n") |
| 95 | |
| 96 | |
| 97 | def write_strings_formatted(self, outfile, key_format, line_format): |
no test coverage detected