Arch: unit test pep8, do not import multiple modules in one line

This commit is contained in:
Bernd Hahnebach
2020-05-11 21:38:37 +02:00
parent e1313ccad8
commit 99fed77233

View File

@@ -23,7 +23,19 @@
#* *
#***************************************************************************/
import FreeCAD, os, unittest, FreeCADGui, Arch, Draft, Part, Sketcher
import os
import unittest
import FreeCAD
import Arch
import Draft
import Part
import Sketcher
if FreeCAD.GuiUp:
import FreeCADGui
class ArchTest(unittest.TestCase):