PLCGenerator.py
changeset 1740 b789b695b5c6
parent 1739 ec153828ded2
child 1742 92932cd370a4
--- a/PLCGenerator.py	Tue Aug 15 12:17:51 2017 +0300
+++ b/PLCGenerator.py	Tue Aug 15 15:50:30 2017 +0300
@@ -160,7 +160,7 @@
                                  ("%s" % min_value, (tagname, "lower")),
                                  ("..", ()),
                                  ("%s" % max_value, (tagname, "upper")),
-                                 (")",())]
+                                 (")", ())]
             # Data type is an enumerated type
             elif basetype_content_type == "enum":
                 values = [[(value.getname(), (tagname, "value", i))]
@@ -521,7 +521,7 @@
         self.ComputedConnectors = {}
         self.ConnectionTypes = {}
         self.RelatedConnections = []
-        self.SFCNetworks = {"Steps":{}, "Transitions":{}, "Actions":{}}
+        self.SFCNetworks = {"Steps": {}, "Transitions": {}, "Actions": {}}
         self.SFCComputedBlocks = []
         self.ActionNumber = 0
         self.Program = []
@@ -898,7 +898,7 @@
             body = body[0]
         body_content = body.getcontent()
         body_type = body_content.getLocalTag()
-        if body_type in ["IL","ST"]:
+        if body_type in ["IL", "ST"]:
             text = body_content.getanyText()
             self.ParentGenerator.GeneratePouProgramInText(text.upper())
             self.Program = [(ReIndentText(text, len(self.CurrentIndent)),