(x)
| 1277 | print(f'{prefix}: {msg}') |
| 1278 | |
| 1279 | def print_verbose(x): |
| 1280 | if not options.verbose: |
| 1281 | return |
| 1282 | if isinstance(x, str): |
| 1283 | print(x) |
| 1284 | else: |
| 1285 | pprint.pprint(x, indent=2) |
| 1286 | |
| 1287 | def b(value): |
| 1288 | """Returns the string 'true' if value is truthy, 'false' otherwise.""" |
no test coverage detected
searching dependent graphs…