Skip to content
Snippets Groups Projects
Commit 9ee26814 authored by Joscha Schmiedt's avatar Joscha Schmiedt
Browse files

Remove deprecated ABCmeta-based ABC class

parent 894e4a3f
No related branches found
No related tags found
2 merge requests!143Release 0.15.0,!135Add and fix more type hints
Pipeline #49974 passed with warnings
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment