formatting changes

This commit is contained in:
Jakub Trllo 2024-03-08 15:56:06 +01:00
parent 66ad6e8242
commit fedf09c364
3 changed files with 6 additions and 9 deletions

View file

@ -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

View file

@ -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.

View file

@ -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').