From d7c9cbb2785accded09de60a811f75486af3181d Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Wed, 7 Feb 2018 16:53:11 -0800 Subject: [PATCH] Update documentation. --- acme/acme/client.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/acme/acme/client.py b/acme/acme/client.py index c33fe96e9..2a8839adb 100644 --- a/acme/acme/client.py +++ b/acme/acme/client.py @@ -661,8 +661,8 @@ class ClientNetwork(object): # pylint: disable=too-many-instance-attributes """Initialize. - :param key: Account private key - :param messages.Registration account: Account object. Required if you are + :param josepy.JWK key: Account private key + :param messages.RegistrationResource account: Account object. Required if you are planning to use .post() with acme_version=2. :param josepy.JWASignature alg: Algoritm to use in signing JWS. :param bool verify_ssl: Whether to verify certificates on SSL connections. @@ -694,10 +694,10 @@ class ClientNetwork(object): # pylint: disable=too-many-instance-attributes .. todo:: Implement ``acmePath``. - :param .JSONDeSerializable obj: + :param josepy.JSONDeSerializable obj: :param str url: The URL to which this object will be POSTed :param bytes nonce: - :rtype: `.JWS` + :rtype: `josepy.JWS` """ jobj = obj.json_dumps(indent=2).encode()