mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
fix: paramiko.HostKeyEntry.hostnames is a list (#6544)
This commit is contained in:
@@ -37,7 +37,7 @@ class InvalidHostKey(Exception):
|
||||
|
||||
class HostKeyEntry:
|
||||
valid: bool
|
||||
hostnames: str
|
||||
hostnames: list[str]
|
||||
key: PKey
|
||||
def __init__(self, hostnames: list[str] | None = ..., key: PKey | None = ...) -> None: ...
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user