fix for hook call

This commit is contained in:
Robin Müller 2021-10-13 12:26:36 +02:00
parent 4b6ab8d00a
commit 99ca187b50
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ class FsfwHookBase(TmTcHookBase):
def handle_service_3_housekeeping(
object_id: bytes, set_id: int, hk_data: bytearray, service3_packet: Service3Base
) -> Tuple[list, list, bytearray, int]:
from common_tmtc.pus_tm import service_3_hk_handling
from common_tmtc.pus_tm.service_3_hk_handling import service_3_hk_handling
return service_3_hk_handling(
object_id=object_id, set_id=set_id, hk_data=hk_data, service3_packet=service3_packet
)