diff --git a/firebase_admin/db.py b/firebase_admin/db.py index d42370317..be2b9c917 100644 --- a/firebase_admin/db.py +++ b/firebase_admin/db.py @@ -979,7 +979,9 @@ def _extract_error_message(cls, response): return message - +# Temporarily disable the lint rule. For more information see: +# https://github.com/googleapis/google-auth-library-python/pull/561 +# pylint: disable=abstract-method class _EmulatorAdminCredentials(google.auth.credentials.Credentials): def __init__(self): google.auth.credentials.Credentials.__init__(self) diff --git a/tests/testutils.py b/tests/testutils.py index d0663ead1..556155253 100644 --- a/tests/testutils.py +++ b/tests/testutils.py @@ -105,6 +105,9 @@ def __call__(self, *args, **kwargs): # pylint: disable=arguments-differ raise self.error +# Temporarily disable the lint rule. For more information see: +# https://github.com/googleapis/google-auth-library-python/pull/561 +# pylint: disable=abstract-method class MockGoogleCredential(credentials.Credentials): """A mock Google authentication credential.""" def refresh(self, request):