We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65318c5 commit af85154Copy full SHA for af85154
1 file changed
nanokvm/utils.py
@@ -76,7 +76,7 @@ async def async_fetch_remote_fingerprint(
76
ssl_ctx.verify_mode = ssl.CERT_NONE
77
78
async with asyncio.timeout(timeout):
79
- reader, writer = await asyncio.open_connection(hostname, port, ssl=ssl_ctx)
+ _, writer = await asyncio.open_connection(hostname, port, ssl=ssl_ctx)
80
81
try:
82
ssl_obj = writer.get_extra_info("ssl_object")
0 commit comments