Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'acme/acme/jws.py')
-rw-r--r--acme/acme/jws.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/acme/acme/jws.py b/acme/acme/jws.py
index c92d226d4..894e69f3d 100644
--- a/acme/acme/jws.py
+++ b/acme/acme/jws.py
@@ -40,10 +40,10 @@ class Signature(jose.Signature):
class JWS(jose.JWS):
"""ACME-specific JWS. Includes none, url, and kid in protected header."""
signature_cls = Signature
- __slots__ = jose.JWS._orig_slots # pylint: disable=no-member
+ __slots__ = jose.JWS._orig_slots
@classmethod
- # pylint: disable=arguments-differ,too-many-arguments
+ # pylint: disable=arguments-differ
def sign(cls, payload, key, alg, nonce, url=None, kid=None):
# Per ACME spec, jwk and kid are mutually exclusive, so only include a
# jwk field if kid is not provided.