this is annoying..

This commit is contained in:
Robin Müller 2023-08-29 21:57:10 +02:00
parent 948f3a1a41
commit cc7b1d3331
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,6 @@ class TcHandler(TcHandlerBase):
CFDP_REMOTE_ENTITY_ID,
CFDP_LOCAL_ENTITY_ID,
)
print(put_req)
else:
put_req = cfdp_put_req_params_to_procedure(put_req_cfg_wrapper.cfg)
_LOGGER.info(

View File

@ -8,6 +8,7 @@ from pathlib import Path
from eive_tmtc.cfdp.fault_handler import EiveCfdpFaultHandler
from eive_tmtc.cfdp.tm import CfdpInCcsdsWrapper
from eive_tmtc.cfdp.user import EiveCfdpUser
from spacepackets.version import get_version as get_spacepackets_version
from spacepackets.cfdp import (
ChecksumType,
TransmissionMode,
@ -232,7 +233,7 @@ def setup_backend(
def main(): # noqa C901: Complexity okay here.
print(f"-- eive tmtc v{__version__} --")
print(f"-- spacepackets v{spacepackets.__version__} --")
print(f"-- spacepackets v{get_spacepackets_version()} --")
add_colorlog_console_logger(_LOGGER)
# TODO: -V CLI argument to enable this?
_LOGGER.setLevel(_LOG_LEVEL)