util/MiniTextControler.py
changeset 1735 c02818d7e29f
parent 1511 91538d0c242c
child 1736 7e61baa047f0
--- a/util/MiniTextControler.py	Mon Aug 14 22:23:17 2017 +0300
+++ b/util/MiniTextControler.py	Mon Aug 14 22:30:41 2017 +0300
@@ -29,22 +29,22 @@
 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):
         if os.path.isfile(self.FilePath):
             file = open(self.FilePath, "r")
@@ -52,25 +52,25 @@
             file.close()
             return text
         return ""
-    
+
     def GetEditedElementInterfaceVars(self, tagname, tree=False, debug = False):
         return []
-    
+
     def GetEditedElementType(self, tagname, debug = False):
         return "program"
-    
+
     def GetBlockType(self, type, inputs = None, debug = False):
         return self.BaseController.GetBlockType(type, inputs, debug)
-    
+
     def GetBlockTypes(self, tagname = "", debug = False):
         return self.BaseController.GetBlockTypes(tagname, debug)
-    
+
     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):
         return self.BaseController.GetEnumeratedDataValues(debug)
-    
+
     def StartBuffering(self):
         pass
 
@@ -79,4 +79,3 @@
 
     def BufferProject(self):
         pass
-