Forces requests to ignore the ``.netrc``.
| 122 | |
| 123 | |
| 124 | class ExplicitNullAuth(requests.auth.AuthBase): |
| 125 | """Forces requests to ignore the ``.netrc``. |
| 126 | <https://github.com/psf/requests/issues/2773#issuecomment-174312831> |
| 127 | """ |
| 128 | |
| 129 | def __call__(self, r): |
| 130 | return r |
| 131 | |
| 132 | |
| 133 | def get_content_type(filename): |