mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Merge branch 'develop' into release/3.15.x
This commit is contained in:
commit
ffca809c42
1 changed files with 4 additions and 0 deletions
|
|
@ -788,6 +788,10 @@ class CreatorType:
|
|||
def __eq__(self, other):
|
||||
return self.name == str(other)
|
||||
|
||||
def __ne__(self, other):
|
||||
# This is implemented only because of Python 2
|
||||
return not self == other
|
||||
|
||||
|
||||
class CreatorTypes:
|
||||
base = CreatorType("base")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue