ProjectController.py
changeset 1834 cd42b426028b
parent 1832 0f1081928d65
child 1836 d42b6cf00fa6
--- a/ProjectController.py	Thu Sep 28 16:25:05 2017 +0300
+++ b/ProjectController.py	Thu Sep 28 17:20:31 2017 +0300
@@ -30,13 +30,13 @@
 import sys
 import traceback
 import time
+from time import localtime
 import shutil
 import re
 import tempfile
 from math import ceil
 from types import ListType
 from threading import Timer, Lock, Thread
-from time import localtime
 from datetime import datetime
 from weakref import WeakKeyDictionary
 from itertools import izip
@@ -44,7 +44,6 @@
 import wx
 
 import features
-import targets
 import connectors
 import util.paths as paths
 from util.misc import CheckPathPerm, GetClassImporter
@@ -58,8 +57,9 @@
 from dialogs import DiscoveryDialog
 from PLCControler import PLCControler
 from plcopen.structures import IEC_KEYWORDS
-from targets.typemapping import DebugTypesSize, LogLevelsCount, LogLevels
-from targets.typemapping import UnpackDebugBuffer
+import targets
+from targets.typemapping import DebugTypesSize, \
+    LogLevelsCount, LogLevels, UnpackDebugBuffer
 from ConfigTreeNode import ConfigTreeNode, XSDSchemaErrorMessage
 
 base_folder = paths.AbsParentDir(__file__)