From 1e471b68ed2e3e3921b93c71041c770a840aa0d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dieter=20Werthm=C3=BCller?= Date: Tue, 13 Nov 2018 19:08:31 -0600 Subject: [PATCH] filters was missing __all__ --- empymod/filters.py | 6 ++++++ runtests.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/empymod/filters.py b/empymod/filters.py index 7ecc23fe..0cd01962 100644 --- a/empymod/filters.py +++ b/empymod/filters.py @@ -55,6 +55,12 @@ import os import numpy as np +__all__ = ['DigitalFilter', 'kong_61_2007', 'kong_241_2007', 'key_101_2009', + 'key_201_2009', 'key_401_2009', 'anderson_801_1982', 'key_51_2012', + 'key_101_2012', 'key_201_2012', 'wer_201_2018', + 'key_81_CosSin_2009', 'key_241_CosSin_2009', 'key_601_CosSin_2009', + 'key_101_CosSin_2012', 'key_201_CosSin_2012'] + # 0. Filter Class and saving/loading routines diff --git a/runtests.sh b/runtests.sh index 00d84e7d..f085503b 100755 --- a/runtests.sh +++ b/runtests.sh @@ -31,7 +31,7 @@ SD="_soft-dep" WARN="" # Get Optional Input -while getopts "hv:cpnd" opt; do +while getopts "hv:cpndw" opt; do case $opt in h) echo "$usage"