(cert)
| 85 | |
| 86 | |
| 87 | def prepare_client_cert(cert): |
| 88 | if isinstance(cert, (str, bytes)): |
| 89 | cert = expand_path(cert) |
| 90 | elif isinstance(cert, list): |
| 91 | cert = tuple(map(prepare_client_cert, cert)) |
| 92 | return cert |
| 93 | |
| 94 | |
| 95 | def _install_fingerprint_adapter(session, fingerprint): |
no test coverage detected