Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
removed deprecated 'abstractproperty'
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Sep 1, 2023
1 parent 1f6df90 commit fee3c95
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions openpype/pipeline/create/creator_plugins.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import copy
import collections

from abc import (
ABCMeta,
abstractmethod,
abstractproperty
)
from abc import ABCMeta, abstractmethod

import six

Expand Down Expand Up @@ -84,7 +80,8 @@ def log(self):
def host(self):
return self._create_context.host

@abstractproperty
@property
@abstractmethod
def identifier(self):
"""Converted identifier.
Expand Down Expand Up @@ -231,7 +228,8 @@ def identifier(self):

return self.family

@abstractproperty
@property
@abstractmethod
def family(self):
"""Family that plugin represents."""

Expand Down

0 comments on commit fee3c95

Please sign in to comment.