about summary refs log tree commit diff
path: root/wqflask/utility/THCell.py
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask/utility/THCell.py')
-rwxr-xr-xwqflask/utility/THCell.py16
1 files changed, 7 insertions, 9 deletions
diff --git a/wqflask/utility/THCell.py b/wqflask/utility/THCell.py
index a96b9e49..dde221b5 100755
--- a/wqflask/utility/THCell.py
+++ b/wqflask/utility/THCell.py
@@ -32,13 +32,11 @@
 
 
 class THCell:
-	def __init__(self, html="", text="", sort=1, idx=-1):
-		self.html = html	#html, for web page
-		self.text = text	#Column text value
-		self.sort = sort	#0: not sortable, 1: yes
-		self.idx = idx		#sort by value
-	
-	def __str__(self):
-		return self.text
-		
+    def __init__(self, html="", text="", sort=1, idx=-1):
+        self.html = html        #html, for web page
+        self.text = text        #Column text value
+        self.sort = sort        #0: not sortable, 1: yes
+        self.idx = idx          #sort by value
 
+    def __str__(self):
+        return self.text