From 70072edab1a8b27ceadb0580b8dadc2b32607a40 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Sun, 29 Dec 2019 00:04:20 +0100 Subject: [PATCH] Fix pylint --- acme/acme/mixins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acme/acme/mixins.py b/acme/acme/mixins.py index 7b50c85dc..91e832e38 100644 --- a/acme/acme/mixins.py +++ b/acme/acme/mixins.py @@ -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