From 9df47c2067a554a385d05baf2683dd2c325d2f83 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 12 Aug 2022 10:22:33 +0200 Subject: [PATCH] remove unused includes --- gomspace/gomspace_common.py | 3 ++- pus_tc/cmd_definitions.py | 17 ++++------------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/gomspace/gomspace_common.py b/gomspace/gomspace_common.py index aa1ffa7..eb08ca4 100644 --- a/gomspace/gomspace_common.py +++ b/gomspace/gomspace_common.py @@ -85,7 +85,8 @@ def pack_get_param_command( @param object_id: The object id of the gomspace device handler. @param table_id: The table id of the gomspace device @param memory_address: Address offset within table of the value to read. - @param parameter_size: Size of the value to read. E.g. temperature is uint16_t and thus parameter_size is 2 + @param parameter_size: Size of the value to read. E.g. temperature is uint16_t and thus + parameter_size is 2 @return: The command as bytearray. """ app_data = struct.pack("!B", table_id) diff --git a/pus_tc/cmd_definitions.py b/pus_tc/cmd_definitions.py index c37bc73..18eb8a0 100644 --- a/pus_tc/cmd_definitions.py +++ b/pus_tc/cmd_definitions.py @@ -1,20 +1,11 @@ -from pus_tc.devs.scex import add_scex_cmds -from pus_tc.system.proc import add_proc_cmds - -from pus_tc.devs.gps import add_gps_cmds -from pus_tc.devs.power import add_pcdu_cmds, add_power_cmd_defs -from pus_tc.devs.plpcdu import add_pl_pcdu_cmds -from pus_tc.devs.rad_sensor import add_rad_sens_cmds -from pus_tc.system.core import add_core_controller_definitions -from pus_tc.devs.heater import add_heater_cmds -from pus_tc.devs.rtd import specify_rtd_cmds -from pus_tc.devs.reaction_wheels import add_rw_cmds from pus_tc.devs.bpx_batt import BpxOpCodes from config.definitions import CustomServiceList -from pus_tc.system.tcs import add_tcs_cmds from tmtccmd.config import TmtcDefinitionWrapper, OpCodeEntry -from tmtccmd.config.tmtc import tmtc_definitions_provider, call_all_definitions_providers +from tmtccmd.config.tmtc import ( + tmtc_definitions_provider, + call_all_definitions_providers, +) from tmtccmd.config.globals import get_default_tmtc_defs