mark intentionally unused args

This commit is contained in:
Jan Petykiewicz 2024-07-28 20:04:15 -07:00
commit 8035daee7e
4 changed files with 13 additions and 13 deletions

View file

@ -132,8 +132,8 @@ class Text(RotatableImpl, Shape):
def to_polygons(
self,
num_vertices: int | None = None, # unused
max_arclen: float | None = None, # unused
num_vertices: int | None = None, # unused # noqa: ARG002
max_arclen: float | None = None, # unused # noqa: ARG002
) -> list[Polygon]:
all_polygons = []
total_advance = 0.0