(self, section, value, path)
| 173 | section.write(f"'{str(safe_value)}',") |
| 174 | |
| 175 | def _document_number(self, section, value, path): |
| 176 | section.write(f"{str(value)},") |
| 177 | |
| 178 | def _document_datetime(self, section, value, path): |
| 179 | datetime_tuple = parse_timestamp(value).timetuple() |