diff python/utils.py @ 282:abbd4bc13dac

modified indicator class (same interface)
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 21 Dec 2012 17:50:10 -0500
parents 4f012e3d881b
children f2cf16ad798f
line wrap: on
line diff
--- a/python/utils.py	Fri Dec 21 17:29:43 2012 -0500
+++ b/python/utils.py	Fri Dec 21 17:50:10 2012 -0500
@@ -166,8 +166,8 @@
 #########################
 
 def LCSS(l1, l2, threshold, distance):
-    "returns the longest common subsequence similarity
-    based on the threshold on distance between two elements of lists l1, l2"
+    """returns the longest common subsequence similarity
+    based on the threshold on distance between two elements of lists l1, l2"""
     from numpy import zeros
     m = len(l1)
     n = len(l2)