Skip to content

Commit

Permalink
Merge pull request #13 from ynput/bugfix/ruff-lint-fix
Browse files Browse the repository at this point in the history
Chore: Ruff linting
  • Loading branch information
iLLiCiTiT committed Jul 23, 2024
2 parents c4b42cd + bd80574 commit 3a281d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
3 changes: 2 additions & 1 deletion client/ayon_openrv/api/ocio.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def set_group_ocio_colorspace(group, colorspace):
This only works if OCIO is already 'active' for the group. T
"""
import ocio_source_setup # noqa, RV OCIO package
# RV OCIO package
import ocio_source_setup # noqa: F401
node = get_group_ocio_file_node(group)

if not node:
Expand Down
5 changes: 1 addition & 4 deletions client/ayon_openrv/plugins/load/openrv/load_frames.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@

import clique

from ayon_core.pipeline import (
load,
get_representation_context
)
from ayon_core.pipeline import load
from ayon_core.pipeline.load import get_representation_path_from_context
from ayon_core.lib.transcoding import IMAGE_EXTENSIONS

Expand Down
5 changes: 1 addition & 4 deletions client/ayon_openrv/plugins/load/openrv/load_mov.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
from ayon_core.pipeline import (
load,
get_representation_context
)
from ayon_core.pipeline import load
from ayon_openrv.api.pipeline import imprint_container
from ayon_openrv.api.ocio import (
set_group_ocio_active_state,
Expand Down

0 comments on commit 3a281d2

Please sign in to comment.