Return a font info if present in the document.
(doc: Document, xref: int)
| 22041 | |
| 22042 | |
| 22043 | def CheckFontInfo(doc: Document, xref: int) -> list: |
| 22044 | """Return a font info if present in the document. |
| 22045 | """ |
| 22046 | for f in doc.FontInfos: |
| 22047 | if xref == f[0]: |
| 22048 | return f |
| 22049 | |
| 22050 | |
| 22051 | def CheckMarkerArg(quads: typing.Any) -> tuple: |
no outgoing calls
no test coverage detected
searching dependent graphs…