Skip to content

Commit 74f79a4

Browse files
Use Ruff pygrep rules (#3923)
* Add config for ruff pygrep * Fix pygrep linting errors
1 parent 2536b7f commit 74f79a4

File tree

9 files changed

+13
-21
lines changed

9 files changed

+13
-21
lines changed

.pre-commit-config.yaml

-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ repos:
1212
- id: end-of-file-fixer
1313
- id: check-toml
1414
name: Validate Poetry
15-
- repo: https://github.com/pre-commit/pygrep-hooks
16-
rev: v1.10.0
17-
hooks:
18-
- id: python-check-blanket-noqa
19-
name: Precision flake ignores
2015
- repo: https://github.com/astral-sh/ruff-pre-commit
2116
rev: v0.6.2
2217
hooks:

example_scenes/opengl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import manim.utils.opengl as opengl
44
from manim import *
5-
from manim.opengl import * # type: ignore
5+
from manim.opengl import *
66

77
# Copied from https://3b1b.github.io/manim/getting_started/example_scenes.html#surfaceexample.
88
# Lines that do not yet work with the Community Version are commented.

manim/cli/render/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
@cloup.argument("scene_names", required=False, nargs=-1)
4040
@global_options
4141
@output_options
42-
@render_options # type: ignore
42+
@render_options
4343
@ease_of_access_options
4444
def render(
4545
**args,

manim/cli/render/render_options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def validate_resolution(ctx, param, value):
7272
"--quality",
7373
default=None,
7474
type=Choice(
75-
list(reversed([q["flag"] for q in QUALITIES.values() if q["flag"]])), # type: ignore
75+
reversed([q["flag"] for q in QUALITIES.values() if q["flag"]]), # type: ignore[arg-type]
7676
case_sensitive=False,
7777
),
7878
help="Render quality at the follow resolution framerates, respectively: "

manim/utils/bezier.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ def match_interpolate(
11131113
return interpolate(
11141114
new_start,
11151115
new_end,
1116-
old_alpha, # type: ignore
1116+
old_alpha, # type: ignore[arg-type]
11171117
)
11181118

11191119

@@ -1900,15 +1900,15 @@ def proportions_along_bezier_curve_for_point(
19001900
# Roots will be none, but in this specific instance, we don't need to consider that.
19011901
continue
19021902
bezier_polynom = np.polynomial.Polynomial(terms[::-1])
1903-
polynom_roots = bezier_polynom.roots() # type: ignore
1903+
polynom_roots = bezier_polynom.roots()
19041904
if len(polynom_roots) > 0:
19051905
polynom_roots = np.around(polynom_roots, int(np.log10(1 / round_to)))
19061906
roots.append(polynom_roots)
19071907

19081908
roots = [[root for root in rootlist if root.imag == 0] for rootlist in roots]
19091909
# Get common roots
19101910
# arg-type: ignore
1911-
roots = reduce(np.intersect1d, roots) # type: ignore
1911+
roots = reduce(np.intersect1d, roots)
19121912
result = np.asarray([r.real for r in roots if 0 <= r.real <= 1])
19131913
return result
19141914

manim/utils/color/core.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -163,21 +163,21 @@ def __init__(
163163
length = len(value)
164164
if all(isinstance(x, float) for x in value):
165165
if length == 3:
166-
self._internal_value = ManimColor._internal_from_rgb(value, alpha) # type: ignore
166+
self._internal_value = ManimColor._internal_from_rgb(value, alpha) # type: ignore[arg-type]
167167
elif length == 4:
168-
self._internal_value = ManimColor._internal_from_rgba(value) # type: ignore
168+
self._internal_value = ManimColor._internal_from_rgba(value) # type: ignore[arg-type]
169169
else:
170170
raise ValueError(
171171
f"ManimColor only accepts lists/tuples/arrays of length 3 or 4, not {length}"
172172
)
173173
else:
174174
if length == 3:
175175
self._internal_value = ManimColor._internal_from_int_rgb(
176-
value, # type: ignore
176+
value, # type: ignore[arg-type]
177177
alpha,
178178
)
179179
elif length == 4:
180-
self._internal_value = ManimColor._internal_from_int_rgba(value) # type: ignore
180+
self._internal_value = ManimColor._internal_from_int_rgba(value) # type: ignore[arg-type]
181181
else:
182182
raise ValueError(
183183
f"ManimColor only accepts lists/tuples/arrays of length 3 or 4, not {length}"

manim/utils/docbuild/manim_directive.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def construct(self):
9292

9393
import jinja2
9494
from docutils import nodes
95-
from docutils.parsers.rst import Directive, directives # type: ignore
95+
from docutils.parsers.rst import Directive, directives
9696
from docutils.statemachine import StringList
9797

9898
from manim import QUALITIES

pyproject.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ select = [
133133
"E",
134134
"F",
135135
"I",
136+
"PGH",
136137
"PT",
137138
"SIM",
138139
"UP",
@@ -202,7 +203,3 @@ convention = "numpy"
202203

203204
[tool.ruff.format]
204205
docstring-code-format = true
205-
206-
[tool.codespell]
207-
write-changes = true
208-
ignore-words-list = ["medias", "nam"]

tests/test_scene_rendering/opengl/test_opengl_renderer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_write_to_movie_disables_window(
2323
assert_file_exists(config.output_file)
2424

2525

26-
@pytest.mark.skip(reason="Temporarily skip due to failing in Windows CI") # type: ignore
26+
@pytest.mark.skip(reason="Temporarily skip due to failing in Windows CI")
2727
def test_force_window_opengl_render_with_movies(
2828
config,
2929
using_temp_opengl_config,

0 commit comments

Comments
 (0)