Remove pylint annotations and script

This commit is contained in:
Markus Lampert
2022-02-28 21:02:45 -08:00
parent 36d865df04
commit 8583894284
82 changed files with 160 additions and 408 deletions

View File

@@ -86,7 +86,7 @@ def selectOffsetWire(feature, wires):
dist = feature.distToShape(w)[0]
if (
closest is None or dist > closest[0]
): # pylint: disable=unsubscriptable-object
):
closest = (dist, w)
if closest is not None: