mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
Merge branch 'develop' into feature/AY-6021_Addons-initialization-for-child-processes
# Conflicts: # client/ayon_core/addon/base.py
This commit is contained in:
commit
a256d0a366
32 changed files with 199 additions and 170 deletions
|
|
@ -9,10 +9,9 @@ import logging
|
|||
import threading
|
||||
import collections
|
||||
from uuid import uuid4
|
||||
from abc import ABCMeta, abstractmethod
|
||||
from abc import ABC, abstractmethod
|
||||
from typing import Optional
|
||||
|
||||
import six
|
||||
import appdirs
|
||||
import ayon_api
|
||||
from semver import VersionInfo
|
||||
|
|
@ -550,8 +549,7 @@ def is_func_marked(func):
|
|||
return getattr(func, _MARKING_ATTR, False)
|
||||
|
||||
|
||||
@six.add_metaclass(ABCMeta)
|
||||
class AYONAddon(object):
|
||||
class AYONAddon(ABC):
|
||||
"""Base class of AYON addon.
|
||||
|
||||
Attributes:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue