Skip to content

Commit

Permalink
Merge branch 'develop' into feature/remove-hiero-addon
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT authored Jun 27, 2024
2 parents bb95b1a + d7a20ba commit 0bfc784
Show file tree
Hide file tree
Showing 166 changed files with 7 additions and 34,250 deletions.
21 changes: 7 additions & 14 deletions client/ayon_core/tools/publisher/models/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import traceback
import collections
from functools import partial
from typing import Optional, Dict, List, Union, Any, Iterable, Literal
from typing import Optional, Dict, List, Union, Any, Iterable

import arrow
import pyblish.plugin
Expand All @@ -22,15 +22,6 @@
# Define constant for plugin orders offset
PLUGIN_ORDER_OFFSET = 0.5

ActionFilterType = Literal[
"all",
"notProcessed",
"processed",
"failed",
"warning",
"failedOrWarning",
"succeeded"
]


class PublishReportMaker:
Expand Down Expand Up @@ -318,8 +309,10 @@ class PublishPluginActionItem:
action_id (str): Action id.
plugin_id (str): Plugin id.
active (bool): Action is active.
on_filter (ActionFilterType): Actions have 'on' attribute which define
when can be action triggered (e.g. 'all', 'failed', ...).
on_filter (Literal["all", "notProcessed", "processed", "failed",
"warning", "failedOrWarning", "succeeded"]): Actions have 'on'
attribute which define when can be action triggered
(e.g. 'all', 'failed', ...).
label (str): Action's label.
icon (Optional[str]) Action's icon.
"""
Expand All @@ -329,14 +322,14 @@ def __init__(
action_id: str,
plugin_id: str,
active: bool,
on_filter: ActionFilterType,
on_filter: str,
label: str,
icon: Optional[str],
):
self.action_id: str = action_id
self.plugin_id: str = plugin_id
self.active: bool = active
self.on_filter: ActionFilterType = on_filter
self.on_filter: str = on_filter
self.label: str = label
self.icon: Optional[str] = icon

Expand Down
13 changes: 0 additions & 13 deletions server_addon/nuke/client/ayon_nuke/__init__.py

This file was deleted.

74 changes: 0 additions & 74 deletions server_addon/nuke/client/ayon_nuke/addon.py

This file was deleted.

104 changes: 0 additions & 104 deletions server_addon/nuke/client/ayon_nuke/api/__init__.py

This file was deleted.

77 changes: 0 additions & 77 deletions server_addon/nuke/client/ayon_nuke/api/actions.py

This file was deleted.

21 changes: 0 additions & 21 deletions server_addon/nuke/client/ayon_nuke/api/command.py

This file was deleted.

4 changes: 0 additions & 4 deletions server_addon/nuke/client/ayon_nuke/api/constants.py

This file was deleted.

Loading

0 comments on commit 0bfc784

Please sign in to comment.