Used as a fallback when a StrCLIResponse cannot be used. E.g. when the output contains binary data or when it is colorized. `.json` will always be None.
| 228 | |
| 229 | |
| 230 | class BytesCLIResponse(bytes, BaseCLIResponse): |
| 231 | """ |
| 232 | Used as a fallback when a StrCLIResponse cannot be used. |
| 233 | |
| 234 | E.g. when the output contains binary data or when it is colorized. |
| 235 | |
| 236 | `.json` will always be None. |
| 237 | |
| 238 | """ |
| 239 | |
| 240 | |
| 241 | class StrCLIResponse(str, BaseCLIResponse): |