| 41 | V5_CHANNEL_PROTOCOL = "v5.channel.k8s.io" |
| 42 | |
| 43 | class _IgnoredIO: |
| 44 | def write(self, _x): |
| 45 | pass |
| 46 | |
| 47 | def getvalue(self): |
| 48 | raise TypeError("Tried to read_all() from a WSClient configured to not capture. Did you mean `capture_all=True`?") |
| 49 | |
| 50 | |
| 51 | class WSClient: |