Add type stubs for google-auth-library-python by Tesla2000 · Pull Request #15625 · python/typeshed

Diff from mypy_primer, showing the effect of this PR on open source code:

ibis (https://github.com/ibis-project/ibis)
- ibis/backends/bigquery/__init__.py:443: note:          def do_connect(self, project_id: str | None = ..., dataset_id: str = ..., credentials: Any | None = ..., application_name: str | None = ..., auth_local_webserver: bool = ..., auth_external_data: bool = ..., auth_cache: str = ..., partition_column: str | None = ..., client: Any | None = ..., storage_client: Any | None = ..., location: str | None = ..., generate_job_id_prefix: Callable[[], str | None] | None = ...) -> Backend
+ ibis/backends/bigquery/__init__.py:443: note:          def do_connect(self, project_id: str | None = ..., dataset_id: str = ..., credentials: Credentials | None = ..., application_name: str | None = ..., auth_local_webserver: bool = ..., auth_external_data: bool = ..., auth_cache: str = ..., partition_column: str | None = ..., client: Any | None = ..., storage_client: Any | None = ..., location: str | None = ..., generate_job_id_prefix: Callable[[], str | None] | None = ...) -> Backend

pandas (https://github.com/pandas-dev/pandas)
- pandas/core/computation/ops.py:328: error: Need type annotation for "_binary_ops_dict" (hint: "_binary_ops_dict: dict[<type>, <type>] = ...")  [var-annotated]