Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 1d96ec18 authored by augustin_s's avatar augustin_s :snake:
Browse files

refactor: cleaned up imports; renamed run -> run_command

parent be0e5005
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
......@@ -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():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment