diff --git a/taptap/taptap_report.py b/taptap/taptap_report.py index ee5d13c..e29b355 100644 --- a/taptap/taptap_report.py +++ b/taptap/taptap_report.py @@ -180,6 +180,9 @@ def main(): tap.get_order() elif methods == "report": tap.build_report() + elif methods == 'all': + tap.get_order() + tap.build_report() else: print("PLS input methods in ('data','report')") if __name__ == "__main__":