Skip to content
Snippets Groups Projects

Add and fix more type hints

1 file
+ 1
4
Compare changes
  • Side-by-side
  • Inline
@@ -23,13 +23,10 @@
#
"""external_credentials_provider."""
from __future__ import absolute_import, unicode_literals
from abc import ABCMeta
from abc import ABC
import logging
from .plain import PlainTextCredentialsProvider
# meta class compatible with Python 2 *and* 3:
ABC = ABCMeta(str('ABC'), (object, ), {str('__slots__'): ()})
class ExternalCredentialsProvider(PlainTextCredentialsProvider, ABC):
"""ExternalCredentialsProvider.
Loading