Skip to content

Commit e75909c

Browse files
authored
fix missing keyword and add codespell exception for incomming (#443)
1 parent 18fb898 commit e75909c

File tree

3 files changed

+3
-11
lines changed

3 files changed

+3
-11
lines changed

.codespellrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ ignore-words-list =
1818
anc,
1919
soop,
2020
CODIN,
21-
allright
21+
allright,
22+
incomming

stixcore/processing/pipeline_cron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def main():
327327
if CONFIG.getboolean("Pipeline", "sync_tm_at_start", fallback=False):
328328
logger.info("start sync_tm_at_start")
329329
res = subprocess.run(
330-
f"rsync -av /data/stix/SOLSOC/from_edds/tm/incoming/*PktTmRaw*.xml {str(tmpath)}", shell=True
330+
f"rsync -av /data/stix/SOLSOC/from_edds/tm/incomming/*PktTmRaw*.xml {str(tmpath)}", shell=True
331331
) # noqa
332332
logger.info(f"done sync_tm_at_start: {str(res)}")
333333

stixcore/tmtc/tm/tm_1.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ def is_datasource_for(cls, tm_packet):
1717
class TM_1_2(GenericTMPacket):
1818
"""TM(1, 2) Telecommand acceptance report – failure."""
1919

20-
def __init__(self, data):
21-
super().__init__(data)
22-
2320
@classmethod
2421
def is_datasource_for(cls, tm_packet):
2522
dh = tm_packet.data_header
@@ -29,9 +26,6 @@ def is_datasource_for(cls, tm_packet):
2926
class TM_1_7(GenericTMPacket):
3027
"""TM(1, 7) Telecommand execution completed report – success."""
3128

32-
def __init__(self, data):
33-
super().__init__(data)
34-
3529
@classmethod
3630
def is_datasource_for(cls, tm_packet):
3731
dh = tm_packet.data_header
@@ -41,9 +35,6 @@ def is_datasource_for(cls, tm_packet):
4135
class TM_1_8(GenericTMPacket):
4236
"""TM(1, 8) Telecommand execution completed report – failure."""
4337

44-
def __init__(self, data):
45-
super().__init__(data)
46-
4738
@classmethod
4839
def is_datasource_for(cls, tm_packet):
4940
dh = tm_packet.data_header

0 commit comments

Comments
 (0)