File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed
Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,5 @@ ignore-words-list =
1818 anc,
1919 soop,
2020 CODIN,
21- allright
21+ allright,
22+ incomming
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -17,9 +17,6 @@ def is_datasource_for(cls, tm_packet):
1717class 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):
2926class 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):
4135class 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
You can’t perform that action at this time.
0 commit comments