Skip to content

Commit

Permalink
Arch: unit test pep8, do not import multiple modules in one line
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach committed May 11, 2020
1 parent 4f8004c commit 65fc2a7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/Mod/Arch/TestArch.py
Expand Up @@ -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):

Expand Down

0 comments on commit 65fc2a7

Please sign in to comment.