Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: add missing paramiko types in init and version #8651

Merged
merged 2 commits into from
Aug 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion stubs/paramiko/paramiko/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ from paramiko.client import (
WarningPolicy as WarningPolicy,
)
from paramiko.common import io_sleep as io_sleep
from paramiko.config import SSHConfig as SSHConfig
from paramiko.config import SSHConfig as SSHConfig, SSHConfigDict as SSHConfigDict
from paramiko.dsskey import DSSKey as DSSKey
from paramiko.ecdsakey import ECDSAKey as ECDSAKey
from paramiko.ed25519key import Ed25519Key as Ed25519Key
Expand All @@ -31,11 +31,16 @@ from paramiko.ssh_exception import (
BadAuthenticationType as BadAuthenticationType,
BadHostKeyException as BadHostKeyException,
ChannelException as ChannelException,
ConfigParseError as ConfigParseError,
CouldNotCanonicalize as CouldNotCanonicalize,
PasswordRequiredException as PasswordRequiredException,
ProxyCommandFailure as ProxyCommandFailure,
SSHException as SSHException,
)
from paramiko.transport import SecurityOptions as SecurityOptions, Transport as Transport

__author__: str
__license__: str

# Names in __all__ with no definition:
# util
1 change: 1 addition & 0 deletions stubs/paramiko/paramiko/_version.pyi
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
__version_info__: tuple[int, int, int]
__version__: str