diff --git a/commands.py b/commands.py index 0911ee7..4f1a1c3 100644 --- a/commands.py +++ b/commands.py @@ -3,15 +3,14 @@ import numpy as np import pandas as pd import epics -from utils.df import drop_col, compare_dfs, count_true +from utils.df import drop_col, compare_dfs from utils.epics import DataGetter, DataPutter from utils.execute import parallel, serial from utils.fileio import load_config, load_csv, store_csv from utils.printing import print_good, print_bad, print_outcome, print_ignored -from utils.seq import is_empty -def run(clargs): +def run_command(clargs): commands = { "check": run_check, "compare": run_compare, diff --git a/sani.py b/sani.py index 448ef83..ce34395 100755 --- a/sani.py +++ b/sani.py @@ -3,8 +3,8 @@ def main(): clargs = handle_clargs() - from commands import run - run(clargs) + from commands import run_command + run_command(clargs) def handle_clargs():