Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ ignore-words-list =
anc,
soop,
CODIN,
allright
allright,
incomming
2 changes: 1 addition & 1 deletion stixcore/processing/pipeline_cron.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)}")

Expand Down
9 changes: 0 additions & 9 deletions stixcore/tmtc/tm/tm_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
Loading