Skip to content

Commit

Permalink
improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Sep 21, 2024
1 parent 3f26e81 commit a8af791
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion google/api_core/rest_streaming_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
import google.auth.aio.transport
except ImportError as e: # pragma: NO COVER
raise ImportError(
"google-api-core[async_rest] is required to use asynchronous rest streaming."
"`google-api-core[async_rest]` is required to use asynchronous rest streaming. "
"Install the `async_rest` extra of `google-api-core` using "
"`pip install google-api-core[async_rest]`."
) from e

import google.protobuf.message
Expand Down

0 comments on commit a8af791

Please sign in to comment.