Remove unused modules

This commit is contained in:
benj5378
2022-01-24 22:42:11 +01:00
committed by WandererFan
parent 4da3c21dcf
commit 2babd6d483
3 changed files with 11 additions and 19 deletions

View File

@@ -38,7 +38,6 @@ class TechDrawWorkbench (Workbench):
def Initialize(self):
# load the module
import TechDrawGui
try:
import TechDrawTools

View File

@@ -1,4 +1,4 @@
#**************************************************************************
# **************************************************************************
# Copyright (c) 2015 WandererFan <wandererfan@gmail.com> *
# *
# This file is part of the FreeCAD CAx development system. *
@@ -18,25 +18,21 @@
# License along with FreeCAD; if not, write to the Free Software *
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# USA *
#**************************************************************************
# **************************************************************************
import FreeCAD, os, sys, unittest, Part
import Measure
import TechDraw
import time
App = FreeCAD
import unittest
from TDTest.DHatchTest import DHatchTest
from TDTest.DProjGroupTest import DProjGroupTest
from TDTest.DHatchTest import DHatchTest
from TDTest.DProjGroupTest import DProjGroupTest
from TDTest.DVAnnoSymImageTest import DVAnnoSymImageTest
from TDTest.DVDimensionTest import DVDimensionTest
from TDTest.DVPartTest import DVPartTest
from TDTest.DVSectionTest import DVSectionTest
from TDTest.DVBalloonTest import DVBalloonTest
from TDTest.DVDimensionTest import DVDimensionTest
from TDTest.DVPartTest import DVPartTest
from TDTest.DVSectionTest import DVSectionTest
from TDTest.DVBalloonTest import DVBalloonTest
#---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
# define the test cases to test the FreeCAD TechDraw module
#---------------------------------------------------------------------------
# ---------------------------------------------------------------------------
class TechDrawTestCases(unittest.TestCase):

View File

@@ -30,9 +30,6 @@
import FreeCAD
import FreeCADGui
import Part
import Drawing
import TechDraw
svgHead = "<svg\n" + " xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\"\n" + " xmlns:freecad=\"http://www.freecadweb.org/wiki/index.php?title=Svg_Namespace\">\n"
svgTail = "\n</svg>"