diff --git a/.codespellrc b/.codespellrc index 63dfed3b..6cfa3ec7 100644 --- a/.codespellrc +++ b/.codespellrc @@ -18,4 +18,5 @@ ignore-words-list = anc, soop, CODIN, - allright + allright, + incomming diff --git a/stixcore/processing/pipeline_cron.py b/stixcore/processing/pipeline_cron.py index 7858b3d5..1019ee13 100644 --- a/stixcore/processing/pipeline_cron.py +++ b/stixcore/processing/pipeline_cron.py @@ -327,7 +327,7 @@ def main(): if CONFIG.getboolean("Pipeline", "sync_tm_at_start", fallback=False): logger.info("start sync_tm_at_start") res = subprocess.run( - f"rsync -av /data/stix/SOLSOC/from_edds/tm/incoming/*PktTmRaw*.xml {str(tmpath)}", shell=True + f"rsync -av /data/stix/SOLSOC/from_edds/tm/incomming/*PktTmRaw*.xml {str(tmpath)}", shell=True ) # noqa logger.info(f"done sync_tm_at_start: {str(res)}") diff --git a/stixcore/tmtc/tm/tm_1.py b/stixcore/tmtc/tm/tm_1.py index ca822460..90ebc8d2 100644 --- a/stixcore/tmtc/tm/tm_1.py +++ b/stixcore/tmtc/tm/tm_1.py @@ -17,9 +17,6 @@ def is_datasource_for(cls, tm_packet): class TM_1_2(GenericTMPacket): """TM(1, 2) Telecommand acceptance report – failure.""" - def __init__(self, data): - super().__init__(data) - @classmethod def is_datasource_for(cls, tm_packet): dh = tm_packet.data_header @@ -29,9 +26,6 @@ def is_datasource_for(cls, tm_packet): class TM_1_7(GenericTMPacket): """TM(1, 7) Telecommand execution completed report – success.""" - def __init__(self, data): - super().__init__(data) - @classmethod def is_datasource_for(cls, tm_packet): dh = tm_packet.data_header @@ -41,9 +35,6 @@ def is_datasource_for(cls, tm_packet): class TM_1_8(GenericTMPacket): """TM(1, 8) Telecommand execution completed report – failure.""" - def __init__(self, data): - super().__init__(data) - @classmethod def is_datasource_for(cls, tm_packet): dh = tm_packet.data_header