Skip to content

Commit 326550b

Browse files
KaiURclaude
andcommitted
fix: remove triple-quote from Change log entries to fix ruff syntax errors
The change log entries in 5 Measure scripts used ''' in the description text, which terminated the header string early and caused ruff invalid-syntax errors throughout the rest of each file. Replace ''' with plain text. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 278e03b commit 326550b

5 files changed

Lines changed: 5 additions & 5 deletions

Part_Document_Scripts/Measure_Curve_With_3_PTS_AS_CIRCLE.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
18.05.26 1.3: Refactor and added proper delete of con elements for straight lines.
2424
18.05.26 1.4: Fix collinear check: normalise cross product by vector magnitudes so the test is scale-independent.
2525
31.05.26 1.5: Remove unused coords_relative_to_axis function.
26-
03.06.26 1.6: Fix syntax error: restore missing opening ''' before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
26+
03.06.26 1.6: Fix syntax error: restore missing opening quote before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
2727
03.06.26 1.7: Fix F401: remove unused Part import.
2828
2929
-----------------------------------------------------------------------------------------------------------------------

Part_Document_Scripts/Measure_Curve_With_3_PTS_AS_CIRCLE_Keep_Con.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
18.05.26 1.3: Refactor and added proper delete of con elements for straight lines.
2424
18.05.26 1.4: Fix collinear check: normalise cross product by vector magnitudes so the test is scale-independent.
2525
31.05.26 1.5: Remove unused coords_relative_to_axis function.
26-
03.06.26 1.6: Fix syntax error: restore missing opening ''' before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
26+
03.06.26 1.6: Fix syntax error: restore missing opening quote before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
2727
03.06.26 1.7: Fix F401: remove unused Part and time imports.
2828
2929
-----------------------------------------------------------------------------------------------------------------------

Part_Document_Scripts/Measure_Radius_Surface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
18.05.26 1.4: Refactor and added proper delete of con elements for straight lines; changed how plane is created.
2525
18.05.26 1.5: Fix collinear check: normalise cross product by vector magnitudes so the test is scale-independent.
2626
31.05.26 1.6: Remove unused coords_relative_to_axis function.
27-
03.06.26 1.7: Fix syntax error: restore missing opening ''' before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
27+
03.06.26 1.7: Fix syntax error: restore missing opening quote before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
2828
03.06.26 1.8: Fix F401: remove unused Part and time imports.
2929
3030
-----------------------------------------------------------------------------------------------------------------------

Part_Document_Scripts/Measure_Radius_Surface_Keep_Con.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
18.05.26 1.4: Refactor and added proper delete of con elements for straight lines; changed how plane is created.
2525
18.05.26 1.5: Fix collinear check: normalise cross product by vector magnitudes so the test is scale-independent.
2626
31.05.26 1.6: Remove unused coords_relative_to_axis function.
27-
03.06.26 1.7: Fix syntax error: restore missing opening ''' before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
27+
03.06.26 1.7: Fix syntax error: restore missing opening quote before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
2828
03.06.26 1.8: Fix F401: remove unused Part and time imports.
2929
3030
-----------------------------------------------------------------------------------------------------------------------

Part_Document_Scripts/Measure_Radius_Surface_Keep_Con_Auto_Edge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
Change: 18.05.26 1.1: Fix collinear check: normalise cross product by vector magnitudes so the test is scale-independent.
2626
18.05.26 1.2: Replace extremum-anchor point placement with add_new_point_on_curve_from_percent.
2727
31.05.26 1.3: Remove unused coords_relative_to_axis function.
28-
03.06.26 1.4: Fix syntax error: restore missing opening ''' before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
28+
03.06.26 1.4: Fix syntax error: restore missing opening quote before normalize_vector docstring; fix F401 (HybridShapeExtract, HybridShapePointOnCurve).
2929
03.06.26 1.5: Fix F401: remove unused Part and time imports.
3030
03.06.26 1.6: Fix E722: replace bare except with except Exception.
3131

0 commit comments

Comments
 (0)