(v)
| 15781 | return t.strip() |
| 15782 | |
| 15783 | def _as_str(v): |
| 15784 | if v is None: |
| 15785 | return "N/A" |
| 15786 | if isinstance(v, bool): |
| 15787 | return "true" if v else "false" |
| 15788 | return str(v).strip() |
| 15789 | |
| 15790 | def _as_int(v): |
| 15791 | try: |
nothing calls this directly
no outgoing calls
no test coverage detected