mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
Fix pylint
This commit is contained in:
parent
ae660e1b0d
commit
70072edab1
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue