diff options
author | BonfaceKilz | 2020-08-17 20:45:08 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-08-18 16:59:52 +0300 |
commit | e49ef0954e111ace2044cced0a83b4d9dc00bc72 (patch) | |
tree | 20d7cd9f99040391dba7e8e75c90dcd9f03d6b98 /wqflask/utility/Plot.py | |
parent | 6c50dff7552df87318253d77ca93e4cc8e26f283 (diff) | |
download | genenetwork2-e49ef0954e111ace2044cced0a83b4d9dc00bc72.tar.gz |
Fix malformed docstring
* wqflask/utility/Plot.py: Update docstring.
Diffstat (limited to 'wqflask/utility/Plot.py')
-rw-r--r-- | wqflask/utility/Plot.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/utility/Plot.py b/wqflask/utility/Plot.py index d4373412..82bf6070 100644 --- a/wqflask/utility/Plot.py +++ b/wqflask/utility/Plot.py @@ -97,7 +97,7 @@ def find_outliers(vals): >>> find_outliers([3.504, 5.234, 6.123, 7.234, 3.542, 5.341, 7.852, 4.555, 12.537]) (11.252500000000001, 0.5364999999999993) - >>> >>> find_outliers([9,12,15,17,31,50,7,5,6,8]) + >>> find_outliers([9,12,15,17,31,50,7,5,6,8]) (32.0, -8.0) If there are no vals, returns None for the upper and lower bounds, |