(self)
| 577 | fence = fences[0] |
| 578 | |
| 579 | def show_pretty(self): |
| 580 | if not self.pretty: |
| 581 | return False |
| 582 | |
| 583 | # only show pretty output if fences are the normal triple-backtick |
| 584 | if self.fence[0][0] != "`": |
| 585 | return False |
| 586 | |
| 587 | return True |
| 588 | |
| 589 | def _stop_waiting_spinner(self): |
| 590 | """Stop and clear the waiting spinner if it is running.""" |
no outgoing calls
no test coverage detected