diff options
author | zsloan | 2020-11-03 15:24:22 -0600 |
---|---|---|
committer | GitHub | 2020-11-03 15:24:22 -0600 |
commit | 55bb282311d82abf842d95a44c61d744803cf4a2 (patch) | |
tree | 64012062bb114908433a4a4c15c7aa22957b9f48 /wqflask/base/GeneralObject.py | |
parent | 5ea0872f60152b3884b71c8e8b3083474ecc66e8 (diff) | |
parent | 96b095aa83ed113250442e4c6f180c7dd66d3e0e (diff) | |
download | genenetwork2-55bb282311d82abf842d95a44c61d744803cf4a2.tar.gz |
Merge pull request #479 from zsloan/bug/haplotype_analyst_error_fix
Bug/haplotype analyst error fix
Diffstat (limited to 'wqflask/base/GeneralObject.py')
-rw-r--r-- | wqflask/base/GeneralObject.py | 2 |
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): |