Skip to content

Commit

Permalink
Add client_info to api_core.gapic_v1 __all__, tweak docstring (#4367)
Browse files Browse the repository at this point in the history
* Add client_info to api_core.gapic_v1 __all__, tweak docstring

* Fix lint

* fix missing word
  • Loading branch information
Jon Wayne Parrott authored Nov 9, 2017
1 parent c365e72 commit 88f6409
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions api_core/google/api_core/gapic_v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from google.api_core.gapic_v1 import client_info
from google.api_core.gapic_v1 import config
from google.api_core.gapic_v1 import method
from google.api_core.gapic_v1 import routing_header

__all__ = [
'client_info',
'config',
'method',
'routing_header',
Expand Down
6 changes: 3 additions & 3 deletions api_core/google/api_core/gapic_v1/client_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

"""Client information
"""Helpers for providing client information.
This module is used by client libraries to send information about the calling
client to services.
Client information is used to send information about the calling client,
such as the library and Python version, to API services.
"""

import platform
Expand Down

0 comments on commit 88f6409

Please sign in to comment.