Add comment, split too long line

This commit is contained in:
Jakub Warmuz 2015-04-28 20:05:37 +00:00
parent 106d2bfbbe
commit 659e07c5b3
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA
2 changed files with 6 additions and 1 deletions

View file

@ -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."""

View file

@ -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()