Replace deprecated abc.abstractproperty

It was deprecated in Python 3.3 [1].

[1] https://docs.python.org/3.13/whatsnew/3.3.html#abc

Change-Id: Ibd98cb93f697a6da6a6bc5a5030640a262c7a66b
This commit is contained in:
Takashi Kajinami
2025-03-02 12:57:24 +09:00
parent 77a30ef281
commit df3d67a4ed
6 changed files with 24 additions and 12 deletions

View File

@@ -114,6 +114,7 @@ class BaseSolution(object, metaclass=abc.ABCMeta):
"""
raise NotImplementedError()
@abc.abstractproperty
@property
@abc.abstractmethod
def actions(self):
raise NotImplementedError()