mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Add comment, split too long line
This commit is contained in:
parent
106d2bfbbe
commit
659e07c5b3
2 changed files with 6 additions and 1 deletions
|
|
@ -18,7 +18,10 @@ from letsencrypt.acme.jose import interfaces
|
|||
from letsencrypt.acme.jose import jwk
|
||||
|
||||
|
||||
class JWA(interfaces.JSONDeSerializable): # pylint: disable=abstract-method,too-few-public-methods
|
||||
class JWA(interfaces.JSONDeSerializable): # pylint: disable=abstract-method
|
||||
# pylint: disable=too-few-public-methods
|
||||
# for some reason disable=abstract-method has to be on the line
|
||||
# above...
|
||||
"""JSON Web Algorithm."""
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@ class JWK(json_util.TypedJSONObjectWithFields):
|
|||
For symmetric cryptosystems, this would return ``self``.
|
||||
|
||||
"""
|
||||
# TODO: rename publickey to stay consistent with
|
||||
# HashableRSAKey.publickey
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue