Consistent black formatting of all Path python files
This commit is contained in:
@@ -84,9 +84,7 @@ def selectOffsetWire(feature, wires):
|
||||
closest = None
|
||||
for w in wires:
|
||||
dist = feature.distToShape(w)[0]
|
||||
if (
|
||||
closest is None or dist > closest[0]
|
||||
):
|
||||
if closest is None or dist > closest[0]:
|
||||
closest = (dist, w)
|
||||
|
||||
if closest is not None:
|
||||
|
||||
Reference in New Issue
Block a user