Skip to content

Commit 9fde8de

Browse files
author
Jon Wayne Parrott
authored
Add client_info to api_core.gapic_v1 __all__, tweak docstring (#4367)
* Add client_info to api_core.gapic_v1 __all__, tweak docstring * Fix lint * fix missing word
1 parent a5ddf46 commit 9fde8de

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

google/api_core/gapic_v1/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
from google.api_core.gapic_v1 import client_info
1516
from google.api_core.gapic_v1 import config
1617
from google.api_core.gapic_v1 import method
1718
from google.api_core.gapic_v1 import routing_header
1819

1920
__all__ = [
21+
'client_info',
2022
'config',
2123
'method',
2224
'routing_header',

google/api_core/gapic_v1/client_info.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
"""Client information
15+
"""Helpers for providing client information.
1616
17-
This module is used by client libraries to send information about the calling
18-
client to services.
17+
Client information is used to send information about the calling client,
18+
such as the library and Python version, to API services.
1919
"""
2020

2121
import platform

0 commit comments

Comments
 (0)