File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 22repos :
33 - repo : https://github.com/astral-sh/ruff-pre-commit
44 # Ruff version.
5- rev : v0.12.4
5+ rev : v0.14.14
66 hooks :
77 # Run the linter.
88 - id : ruff
@@ -12,16 +12,16 @@ repos:
1212 - id : ruff-format
1313 exclude : src/surface/photosphere/photosphere/projection_matrix/.*
1414 - repo : https://github.com/pre-commit/mirrors-clang-format
15- rev : v20 .1.8
15+ rev : v21 .1.8
1616 hooks :
1717 - id : clang-format
1818 types_or : [c++, c]
1919 args : ["-style=file"]
2020 - repo : https://github.com/pre-commit/pre-commit-hooks
21- rev : v5 .0.0
21+ rev : v6 .0.0
2222 hooks :
2323 - id : trailing-whitespace
2424 - repo : https://github.com/google/yamlfmt
25- rev : v0.17.2
25+ rev : v0.21.0
2626 hooks :
2727 - id : yamlfmt
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class GUINode(Node):
3030
3131 __instance : 'GUINode | None' = None
3232
33- def __new__ (cls , _ : str | None = None ) -> 'GUINode' :
33+ def __new__ (cls , _ : str | None = None ) -> 'GUINode' : # noqa: PYI034
3434 if cls .__instance is None :
3535 cls .__instance = super ().__new__ (cls )
3636 return cls .__instance
You can’t perform that action at this time.
0 commit comments