Skip to content

Commit 8b1bd9f

Browse files
committed
bypass STR when extract DTR log
1 parent 0c678a6 commit 8b1bd9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

STDF_Reader_GUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
from src.Threads import PdfWriterThread, CsvParseThread, XlsxParseThread, DiagParseThread, SingleRecParseThread
5050
from llm.chat import ChatBot
5151

52-
Version = 'Beta 0.8.28'
52+
Version = 'Beta 0.8.29'
5353

5454

5555
###################################################

src/FileRead.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def SearchSTDF(fname, rec_name):
277277
p = Parser(inp=fin)
278278
storage = MyMemoryWriter(rec_name)
279279
p.addSink(storage)
280-
p.parse()
280+
p.parse(skipType="pystdf.V4.Str")
281281
return storage.data
282282

283283
class MyMemoryWriter:

0 commit comments

Comments
 (0)