Fix type warning for invalid escape in string#1003
Conversation
|
This seems to break presubmit tests on Windows |
|
@xpconanfan — the problem with that build is that installation of Python 3.11 is failing on Windows:
Error code 499 seems to be due to the client closing the connection while the server was still processing the request, so it may be worthwhile to just rerun that build to see if it succeeds on the next run. I'll re-push the branch to re-trigger the build to see if that fixes it. If it doesn't, I will debug further. |
This change will fix the following type checker warning:
```
mobly/controllers/attenuator_lib/telnet_scpi_client.py:73: SyntaxWarning: invalid escape sequence '\S'
[_ascii_string("\S+" + self.rx_cmd_separator)], 1
```
5cbc68c to
2a2bd19
Compare
|
@xpconanfan — all tests passed upon rerun. |
This change will fix the following type checker warning: