From 4cc46d84810ca9492e9a38e1a1f88ab36d214791 Mon Sep 17 00:00:00 2001 From: Zachary Sloan Date: Tue, 28 Aug 2012 16:05:09 -0500 Subject: Various changes related to the webqtlCaseData object and the way values/variances/num_cases are called in DataEditingPage.py --- wqflask/utility/webqtlUtil.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'wqflask/utility') diff --git a/wqflask/utility/webqtlUtil.py b/wqflask/utility/webqtlUtil.py index 6409e781..99451e33 100755 --- a/wqflask/utility/webqtlUtil.py +++ b/wqflask/utility/webqtlUtil.py @@ -252,7 +252,12 @@ def FloatList2String(lst): return "" def ListNotNull(lst): - 'Determine if the elements in a list are all null' + '''Obsolete - Use built in function any (or all or whatever) + + + Determine if the elements in a list are all null + + ''' for item in lst: if item is not None: return 1 -- cgit v1.2.3