aboutsummaryrefslogtreecommitdiff
path: root/wqflask/base/GeneralObject.py
diff options
context:
space:
mode:
authorBonfaceKilz2020-11-11 14:40:18 +0300
committerBonfaceKilz2020-11-11 14:40:18 +0300
commitdbeefadc25fb2bc6e04b4baa4b35bbbd5298e880 (patch)
tree9ae956af7a43465851e4f786d416755e890337d8 /wqflask/base/GeneralObject.py
parent394a67ca2f28b18aa3ea8398ca48661985be8f5a (diff)
parent25f7d30b9f052ec5d812bfe3bf9713df850cc267 (diff)
downloadgenenetwork2-dbeefadc25fb2bc6e04b4baa4b35bbbd5298e880.tar.gz
Merge branch 'testing' of github.com:genenetwork/genenetwork2 into feature/add-glossary-page
Diffstat (limited to 'wqflask/base/GeneralObject.py')
-rw-r--r--wqflask/base/GeneralObject.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/base/GeneralObject.py b/wqflask/base/GeneralObject.py
index 0122ee32..249195e2 100644
--- a/wqflask/base/GeneralObject.py
+++ b/wqflask/base/GeneralObject.py
@@ -28,7 +28,7 @@ class GeneralObject:
"""
Base class to define an Object.
a = [Spam(1, 4), Spam(9, 3), Spam(4,6)]
- a.sort(lambda x, y: cmp(x.eggs, y.eggs))
+ a.sort(key = lambda x: x.eggs)
"""
def __init__(self, *args, **kw):