mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
formatting changes
This commit is contained in:
parent
66ad6e8242
commit
fedf09c364
3 changed files with 6 additions and 9 deletions
|
|
@ -1,16 +1,17 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""Maya look extractor."""
|
||||
import os
|
||||
import sys
|
||||
from abc import ABCMeta, abstractmethod
|
||||
from collections import OrderedDict
|
||||
import contextlib
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import tempfile
|
||||
import platform
|
||||
from abc import ABCMeta, abstractmethod
|
||||
from collections import OrderedDict
|
||||
|
||||
import six
|
||||
import attr
|
||||
|
||||
import pyblish.api
|
||||
|
||||
from maya import cmds # noqa
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ def get_product_name(
|
|||
|
||||
Args:
|
||||
project_name (str): Project name.
|
||||
task_entity (Optional[Dict[str, Any]]): Task entity.
|
||||
task_entity (Dict[str, Any]): Task entity.
|
||||
host_name (str): Host name.
|
||||
product_type (str): Product type.
|
||||
variant (str): In most of the cases it is user input during creation.
|
||||
|
|
|
|||
|
|
@ -27,10 +27,6 @@ NOT_SET = object()
|
|||
class LoaderActionsModel:
|
||||
"""Model for loader actions.
|
||||
|
||||
This is probably only part of models that requires to use codebase from
|
||||
'ayon_core.client' because of backwards compatibility with loaders logic
|
||||
which are expecting entities.
|
||||
|
||||
TODOs:
|
||||
Deprecate 'qargparse' usage in loaders and implement conversion
|
||||
of 'ActionItem' to data (and 'from_data').
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue