[FEM] remove unneeded checks for Python 3

since we only support Python >=3, these checks can go
This commit is contained in:
Uwe
2022-07-31 02:42:39 +02:00
parent eabffee3a5
commit 529c48cca4
11 changed files with 22 additions and 67 deletions

View File

@@ -48,9 +48,8 @@ import FreeCAD
from femtools.migrate_app import FemMigrateApp
if sys.version_info.major >= 3:
# migrate old FEM App objects
sys.meta_path.append(FemMigrateApp())
# migrate old FEM App objects
sys.meta_path.append(FemMigrateApp())
# add FEM App unit tests