util/MiniTextControler.py
changeset 1784 64beb9e9c749
parent 1744 69dfdb26f600
child 1831 56b48961cc68
--- a/util/MiniTextControler.py	Mon Aug 21 20:17:19 2017 +0000
+++ b/util/MiniTextControler.py	Mon Aug 21 23:22:58 2017 +0300
@@ -28,49 +28,50 @@
 
 import os
 
+
 class MiniTextControler:
-    
+
     def __init__(self, filepath, controller):
         self.FilePath = filepath
         self.BaseController = controller
-    
+
     def __del__(self):
         self.BaseController = None
-    
+
     def CTNFullName(self):
         return ""
-    
+
     def SetEditedElementText(self, tagname, text):
         file = open(self.FilePath, "w")
         file.write(text)
         file.close()
-        
-    def GetEditedElementText(self, tagname, debug = False):
+
+    def GetEditedElementText(self, tagname, debug=False):
         if os.path.isfile(self.FilePath):
             file = open(self.FilePath, "r")
             text = file.read()
             file.close()
             return text
         return ""
-    
-    def GetEditedElementInterfaceVars(self, tagname, tree=False, debug = False):
+
+    def GetEditedElementInterfaceVars(self, tagname, tree=False, debug=False):
         return []
-    
-    def GetEditedElementType(self, tagname, debug = False):
+
+    def GetEditedElementType(self, tagname, debug=False):
         return "program"
-    
-    def GetBlockType(self, type, inputs = None, debug = False):
+
+    def GetBlockType(self, type, inputs=None, debug=False):
         return self.BaseController.GetBlockType(type, inputs, debug)
-    
-    def GetBlockTypes(self, tagname = "", debug = False):
+
+    def GetBlockTypes(self, tagname="", debug=False):
         return self.BaseController.GetBlockTypes(tagname, debug)
-    
-    def GetDataTypes(self, tagname = "", basetypes = True, only_locatables = False, debug = False):
+
+    def GetDataTypes(self, tagname="", basetypes=True, only_locatables=False, debug=False):
         return self.BaseController.GetDataTypes(tagname, basetypes, only_locatables, debug)
-    
-    def GetEnumeratedDataValues(self, debug = False):
+
+    def GetEnumeratedDataValues(self, debug=False):
         return self.BaseController.GetEnumeratedDataValues(debug)
-    
+
     def StartBuffering(self):
         pass
 
@@ -79,4 +80,3 @@
 
     def BufferProject(self):
         pass
-