mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
♻️ make product type and product base types None by default
This commit is contained in:
parent
f758420199
commit
1c63b75a27
1 changed files with 3 additions and 2 deletions
|
|
@ -3,6 +3,7 @@ from __future__ import annotations
|
|||
|
||||
import logging
|
||||
import os
|
||||
from typing import Optional
|
||||
|
||||
from ayon_core.pipeline.plugin_discover import (
|
||||
deregister_plugin,
|
||||
|
|
@ -19,8 +20,8 @@ from .utils import get_representation_path_from_context
|
|||
class LoaderPlugin(list):
|
||||
"""Load representation into host application"""
|
||||
|
||||
product_types: set[str] = set()
|
||||
product_base_types: set[str] = set()
|
||||
product_types: Optional[set[str]] = None
|
||||
product_base_types: Optional[set[str]] = None
|
||||
representations = set()
|
||||
extensions = {"*"}
|
||||
order = 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue