Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #15

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ repos:
rev: '1.0.1'
hooks:
- id: flynt
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.285'
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.8.4'
hooks:
- id: ruff
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 24.10.0
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/keewis/blackdoc
rev: v0.3.8
rev: v0.3.9
hooks:
- id: blackdoc
language_version: python3.9
8 changes: 5 additions & 3 deletions apps/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
:class:`Dropdown`class instance.
"""

TEMPLATE_NUKE_NODE_COLORMATRIX: str = """
TEMPLATE_NUKE_NODE_COLORMATRIX: str = (
"""
ColorMatrix {{
inputs 0
matrix {{
Expand All @@ -70,8 +71,9 @@
xpos 0
ypos 0
}}"""[
1:
]
1:
]
)
"""
*The Foundry Nuke* *ColorMatrix* node template.
"""
Expand Down