BIM: Trim trailing newlines

This commit is contained in:
luzpaz
2024-07-13 15:42:03 +00:00
committed by wwmayer
parent a4862b6819
commit 25e8aacbe3
20 changed files with 36 additions and 36 deletions

View File

@@ -164,8 +164,8 @@ class IFC_UpdateIOS:
# code from https://www.geeksforgeeks.org/compare-two-version-numbers
arr1 = v1.replace("v","").split(".")
arr2 = v2.replace("v","").split(".")
arr1 = v1.replace("v","").split(".")
arr2 = v2.replace("v","").split(".")
n = len(arr1)
m = len(arr2)
arr1 = [int(i) for i in arr1]

View File

@@ -54,7 +54,7 @@ SDU = int(SINGLEDOC) # number of objects is different in singledoc
"""
unit tests for the NativeIFC functionality. To run the tests, either:
- in terminal mode: FreeCAD -t ifc_selftest
- in the FreeCAD UI: Switch to Test Framework workbench, press "Self test" and
- in the FreeCAD UI: Switch to Test Framework workbench, press "Self test" and
choose ifc_selftest in the list
"""