about summary refs log tree commit diff
path: root/wqflask/utility/TDCell.py
diff options
context:
space:
mode:
authorSam Ockman2012-06-05 00:24:44 -0400
committerSam Ockman2012-06-05 00:24:44 -0400
commit8ac39ead1014953c634e85d0ce340497ecfe2934 (patch)
treef69bef8650f64bdfa5093c39fe7dc6a8b5ffac82 /wqflask/utility/TDCell.py
parent8abd879e71f492ce61e0b8d3eab53fcb43c34681 (diff)
downloadgenenetwork2-8ac39ead1014953c634e85d0ce340497ecfe2934.tar.gz
Ran reindent.py recursively on wqflask directory
Diffstat (limited to 'wqflask/utility/TDCell.py')
-rwxr-xr-xwqflask/utility/TDCell.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/wqflask/utility/TDCell.py b/wqflask/utility/TDCell.py
index 76b9c5db..8de8e050 100755
--- a/wqflask/utility/TDCell.py
+++ b/wqflask/utility/TDCell.py
@@ -30,13 +30,12 @@
 #
 ##########################################################
 
-		
+
 class TDCell:
-	def __init__(self, html="", text="", val=0.0):
-		self.html = html	#html, for web page
-		self.text = text	#text value, for output to a text file
-		self.val = val		#sort by value
-	
-	def __str__(self):
-		return self.text
+    def __init__(self, html="", text="", val=0.0):
+        self.html = html        #html, for web page
+        self.text = text        #text value, for output to a text file
+        self.val = val          #sort by value
 
+    def __str__(self):
+        return self.text