Fix pylint

This commit is contained in:
Adrien Ferrand 2019-12-29 00:04:20 +01:00
parent ae660e1b0d
commit 70072edab1

View file

@ -36,7 +36,7 @@ class ResourceMixin(VersionedLEACMEMixin):
jobj.pop('resource', None)
return jobj
raise AttributeError('This class does not implement method to_partial_json().') # pragma: no cover
raise AttributeError('Method to_partial_json() is not implemented.') # pragma: no cover
class TypeMixin(VersionedLEACMEMixin):
@ -52,4 +52,4 @@ class TypeMixin(VersionedLEACMEMixin):
jobj.pop('type', None)
return jobj
raise AttributeError('This class does not implement method to_partial_json().') # pragma: no cover
raise AttributeError('Method to_partial_json() is not implemented.') # pragma: no cover