(self, path, comments)
| 183 | section.write(f"datetime({datetime_str}),") |
| 184 | |
| 185 | def _get_comment(self, path, comments): |
| 186 | key = re.sub(r'^\.', '', ''.join(path)) |
| 187 | if comments and key in comments: |
| 188 | return '# ' + comments[key] |
| 189 | else: |
| 190 | return '' |
| 191 | |
| 192 | def _start_nested_value(self, section, start): |
| 193 | section.write(start) |
no test coverage detected