Skip to content

Commit

Permalink
Fix documentation error in SSHConnectionOptions
Browse files Browse the repository at this point in the history
This commit fixes an error in the SSHClientConnectionOptions and
SSHServerConnectionOptions class documentation. Thanks go to GitHub
user bowenerchen for reporting this issue.
  • Loading branch information
ronf committed Aug 30, 2023
1 parent fa6a1c9 commit e755778
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions asyncssh/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -6980,7 +6980,7 @@ class SSHClientConnectionOptions(SSHConnectionOptions):
build up a configuration. When an option is not explicitly
specified, its value will be pulled from this options object
(if present) before falling back to the default value.
:type client_factory: `callable` returning :class:`SSHClientConnection`
:type client_factory: `callable` returning :class:`SSHClient`
:type proxy_command: `str` or `list` of `str`
:type known_hosts: *see* :ref:`SpecifyingKnownHosts`
:type host_key_alias: `str`
Expand Down Expand Up @@ -7629,7 +7629,7 @@ class SSHServerConnectionOptions(SSHConnectionOptions):
build up a configuration. When an option is not explicitly
specified, its value will be pulled from this options object
(if present) before falling back to the default value.
:type server_factory: `callable` returning :class:`SSHServerConnection`
:type server_factory: `callable` returning :class:`SSHServer`
:type proxy_command: `str` or `list` of `str`
:type family: `socket.AF_UNSPEC`, `socket.AF_INET`, or `socket.AF_INET6`
:type server_host_keys: *see* :ref:`SpecifyingPrivateKeys`
Expand Down

0 comments on commit e755778

Please sign in to comment.