Merge "Replace abc.abstractproperty with property and abc.abstractmethod"

This commit is contained in:
Zuul 2022-08-04 21:11:12 +00:00 committed by Gerrit Code Review
commit a3b48cc5c1
1 changed files with 2 additions and 1 deletions

View File

@ -726,7 +726,8 @@ class ServiceInstanceManager(object):
class BaseNetworkhelper(metaclass=abc.ABCMeta):
@abc.abstractproperty
@property
@abc.abstractmethod
def NAME(self):
"""Returns code name of network helper."""