(self, msg, eol=None)
| 119 | |
| 120 | # show information |
| 121 | def info(self, msg, eol=None): |
| 122 | if msg: |
| 123 | print(Back.BLUE + msg + Style.RESET_ALL, end=eol) |
| 124 | sys.stdout.flush() |
| 125 | |
| 126 | # show raw data |
| 127 | def raw(self, msg, eol=None): |
no outgoing calls
no test coverage detected