that should do the job

This commit is contained in:
2022-12-01 11:14:28 +01:00
parent c421f3f5d7
commit 140c827ce7
6 changed files with 39 additions and 20 deletions

View File

@ -1,8 +1,10 @@
import os
from eive_tmtc.config.definitions import EIVE_TMTC_ROOT
from tmtccmd.fsfw import parse_fsfw_returnvalues_csv, RetvalDictT
from tmtccmd.logging import get_console_logger
DEFAULT_RETVAL_CSV_NAME = "eive_tmtc/config/returnvalues.csv"
DEFAULT_RETVAL_CSV_NAME = EIVE_TMTC_ROOT / "config/returnvalues.csv"
__RETVAL_DICT = None
LOGGER = get_console_logger()