Replace abc.abstractproperty with property and abc.abstractmethod
Replace abc.abstractproperty with property and abc.abstractmethod, as abc.abstractproperty has been deprecated since python3.3[1] [1]https://docs.python.org/3.8/whatsnew/3.3.html?highlight=deprecated#abc Change-Id: Idfaf5bb3a0552f1128416821de58dc8e1bb584f0
This commit is contained in:
@@ -79,7 +79,8 @@ class CommonIdentityTests(object):
|
|||||||
|
|
||||||
self.stub_auth(json=token)
|
self.stub_auth(json=token)
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def version(self):
|
def version(self):
|
||||||
"""The API version being tested."""
|
"""The API version being tested."""
|
||||||
|
|
||||||
|
@@ -25,7 +25,8 @@ class EntityManager(base.Manager):
|
|||||||
|
|
||||||
resource_class = None
|
resource_class = None
|
||||||
|
|
||||||
@abc.abstractproperty
|
@property
|
||||||
|
@abc.abstractmethod
|
||||||
def object_type(self):
|
def object_type(self):
|
||||||
raise exceptions.MethodNotImplemented
|
raise exceptions.MethodNotImplemented
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user