diff options
author | zsloan | 2016-11-02 21:54:41 +0000 |
---|---|---|
committer | zsloan | 2016-11-02 21:54:41 +0000 |
commit | de58be0b8620032261f1f4699856994a4ee164d7 (patch) | |
tree | 1471365be3ff35e5ae423e78fe763c7bf67dd9b5 /wqflask/base | |
parent | daecb401ec470064cb69c11e0241fd14a915de8f (diff) | |
download | genenetwork2-de58be0b8620032261f1f4699856994a4ee164d7.tar.gz |
Added toggleable short and long labels to correlation matrix
Fixed issue where I forgot to remove a parameter from jsonable_table_row in trait.py
Diffstat (limited to 'wqflask/base')
-rw-r--r-- | wqflask/base/trait.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/base/trait.py b/wqflask/base/trait.py index 8788d983..11a91d1d 100644 --- a/wqflask/base/trait.py +++ b/wqflask/base/trait.py @@ -120,7 +120,7 @@ class GeneralTrait(object): else: return dict() - def jsonable_table_row(self, index, search_type): + def jsonable_table_row(self, index): """Return a list suitable for json and intended to be displayed in a table Actual turning into json doesn't happen here though""" |