Merge branch 'master' of https://github.com/FreeCAD/FreeCAD into toolbit-gui

This commit is contained in:
Patrick Felixberger
2020-04-20 17:00:18 +02:00
187 changed files with 22068 additions and 14178 deletions

View File

@@ -23,7 +23,6 @@
# ***************************************************************************
import FreeCAD
import Part
import PathScripts.PathGeom as PathGeom
import PathScripts.PathLog as PathLog
import PathScripts.PathPreferences as PathPreferences
@@ -36,6 +35,10 @@ import math
import os
import zipfile
# lazily loaded modules
from lazy_loader.lazy_loader import LazyLoader
Part = LazyLoader('Part', globals(), 'Part')
__title__ = "Tool bits."
__author__ = "sliptonic (Brad Collette)"
__url__ = "http://www.freecadweb.org"