From f8299b91cd6aa41e03edd0051839684afa180a88 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 24 Jan 2023 12:41:50 +0100 Subject: [PATCH] import replacements --- eive_tmtc/pus_tc/procedure_packer.py | 2 +- eive_tmtc/pus_tc/system/proc.py | 4 ++-- eive_tmtc/pus_tm/action_reply_handler.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eive_tmtc/pus_tc/procedure_packer.py b/eive_tmtc/pus_tc/procedure_packer.py index 8899426..00dd31d 100644 --- a/eive_tmtc/pus_tc/procedure_packer.py +++ b/eive_tmtc/pus_tc/procedure_packer.py @@ -38,7 +38,7 @@ from eive_tmtc.pus_tc.devs.rad_sensor import pack_rad_sensor_test_into from eive_tmtc.tmtc.payload.ploc_memory_dumper import pack_ploc_memory_dumper_cmd from eive_tmtc.pus_tc.devs.ccsds_handler import pack_ccsds_handler_test from eive_tmtc.tmtc.core import pack_core_commands -from eive_tmtc.pus_tc.devs.star_tracker import pack_star_tracker_commands +from eive_tmtc.tmtc.star_tracker import pack_star_tracker_commands from eive_tmtc.tmtc.syrlinks_hk_handler import pack_syrlinks_command from eive_tmtc.pus_tc.devs.gps import pack_gps_command from eive_tmtc.tmtc.acs.acs_board import pack_acs_command diff --git a/eive_tmtc/pus_tc/system/proc.py b/eive_tmtc/pus_tc/system/proc.py index dc889a7..363081d 100644 --- a/eive_tmtc/pus_tc/system/proc.py +++ b/eive_tmtc/pus_tc/system/proc.py @@ -30,7 +30,7 @@ from eive_tmtc.tmtc.syrlinks_hk_handler import SetId as SyrlinksSetIds from eive_tmtc.pus_tc.devs.gps import SetId as GpsSetIds from eive_tmtc.tmtc.acs.imtq import ImtqSetId from eive_tmtc.pus_tc.devs.sus import SetId -from eive_tmtc.pus_tc.devs.star_tracker import SetIds as StrSetIds +from eive_tmtc.tmtc.star_tracker import SetId as StrSetIds from eive_tmtc.tmtc.acs.reaction_wheels import ( RwSetId, rw_speed_up_cmd_consec, @@ -43,7 +43,7 @@ from eive_tmtc.pus_tc.system.controllers import ( from eive_tmtc.tmtc.acs.acs_board import pack_acs_command from eive_tmtc.tmtc.acs.sus_board import pack_sus_cmds from eive_tmtc.tmtc.acs.imtq import pack_imtq_test_into, pack_dipole_command -from eive_tmtc.pus_tc.devs.star_tracker import pack_star_tracker_commands +from eive_tmtc.tmtc.star_tracker import pack_star_tracker_commands from eive_tmtc.tmtc.acs.reaction_wheels import pack_rw_ass_cmds, pack_set_speed_command diff --git a/eive_tmtc/pus_tm/action_reply_handler.py b/eive_tmtc/pus_tm/action_reply_handler.py index 67892e3..ae5137f 100644 --- a/eive_tmtc/pus_tm/action_reply_handler.py +++ b/eive_tmtc/pus_tm/action_reply_handler.py @@ -4,7 +4,7 @@ from eive_tmtc.tmtc.acs.imtq import ImtqActionId from eive_tmtc.pus_tm.defs import PrintWrapper from eive_tmtc.tmtc.payload.ploc_mpsoc import PlocReplyIds from eive_tmtc.tmtc.payload.ploc_supervisor import SupvActionId -from eive_tmtc.pus_tc.devs.star_tracker import StarTrackerActionId +from eive_tmtc.tmtc.star_tracker import StarTrackerActionId from eive_tmtc.tmtc.power.tm import handle_get_param_data_reply from tmtccmd.logging import get_console_logger from tmtccmd.tm import Service8FsfwTm