(k)
| 19105 | ) |
| 19106 | |
| 19107 | def _is_hidden_key(k): |
| 19108 | if not isinstance(k, str): |
| 19109 | k = str(k) |
| 19110 | kn = _normalize(k) |
| 19111 | if kn in hidden_fields: |
| 19112 | return True |
| 19113 | return any(needle in kn for needle in hidden_needles) |
| 19114 | |
| 19115 | for d in data: |
| 19116 | pdf.add_page() |
nothing calls this directly
no outgoing calls
no test coverage detected