MCPcopy Index your code
hub / github.com/pyfa-org/Pyfa / _importSectionIter

Function _importSectionIter

service/port/eft.py:638–648  ·  view source on GitHub ↗
(lines)

Source from the content-addressed store, hash-verified

636
637
638def _importSectionIter(lines):
639 section = Section()
640 for line in lines:
641 if not line:
642 if section.lines:
643 yield section
644 section = Section()
645 else:
646 section.lines.append(line)
647 if section.lines:
648 yield section
649
650
651def _importCreateFit(lines):

Callers 1

importEftFunction · 0.85

Calls 2

SectionClass · 0.85
appendMethod · 0.45

Tested by

no test coverage detected