Cleanup: unused argument, variable warnings

This commit is contained in:
2022-06-14 14:30:09 +10:00
parent f89ea052f7
commit 0bd6b3e5a0
9 changed files with 18 additions and 20 deletions

View File

@@ -1028,7 +1028,7 @@ class DashedLineShader(StrokeShader):
it = stroke.stroke_vertices_begin(sampling)
pattern_cycle = cycle(self.pattern)
pattern = next(pattern_cycle)
for svert in it:
for _svert in it:
pos = it.t # curvilinear abscissa
if pos - start + sampling > pattern: