(self, msg, eol=None)
| 131 | |
| 132 | # show chit-chat |
| 133 | def chitchat(self, msg, eol=None): |
| 134 | if msg: |
| 135 | print(Style.DIM + msg + Style.RESET_ALL, end=eol) |
| 136 | sys.stdout.flush() |
| 137 | |
| 138 | # show warning message |
| 139 | def warning(self, msg): |
no outgoing calls
no test coverage detected