(display_path)
| 180 | |
| 181 | |
| 182 | def handle_notes(display_path) -> list[str]: |
| 183 | if str(display_path) in notes: |
| 184 | res = notes[str(display_path)] |
| 185 | # remove the note from the notes list |
| 186 | del notes[str(display_path)] |
| 187 | return res |
| 188 | return [] |
| 189 | |
| 190 | |
| 191 | @dataclasses.dataclass |
no test coverage detected