removed deprecated 'abstractproperty'

This commit is contained in:
Jakub Trllo 2023-09-01 17:00:14 +02:00
parent 1f6df907eb
commit fee3c950d3

View file

@ -1,11 +1,7 @@
import copy
import collections
from abc import (
ABCMeta,
abstractmethod,
abstractproperty
)
from abc import ABCMeta, abstractmethod
import six
@ -84,7 +80,8 @@ class SubsetConvertorPlugin(object):
def host(self):
return self._create_context.host
@abstractproperty
@property
@abstractmethod
def identifier(self):
"""Converted identifier.
@ -231,7 +228,8 @@ class BaseCreator:
return self.family
@abstractproperty
@property
@abstractmethod
def family(self):
"""Family that plugin represents."""