(self, doc)
| 356 | doc.style.new_paragraph() |
| 357 | |
| 358 | def _add_streaming_blob_note(self, doc): |
| 359 | doc.style.start_note() |
| 360 | msg = ( |
| 361 | "This argument is of type: streaming blob. " |
| 362 | "Its value must be the path to a file " |
| 363 | "(e.g. ``path/to/file``) and must **not** " |
| 364 | "be prefixed with ``file://`` or ``fileb://``" |
| 365 | ) |
| 366 | doc.writeln(msg) |
| 367 | doc.style.end_note() |
| 368 | |
| 369 | def _add_tagged_union_note(self, shape, doc): |
| 370 | doc.style.start_note() |
no test coverage detected