feat(google-devicesandservices-health): add google-devicesandservices-health#17365
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces the new google-devicesandservices-health client library (version 0.0.0) for Python, which provides clients, transports, pagers, and types to interact with the Google Health API (specifically DataPointsService and DataSubscriptionService). The changes include adding the library to the librarian configuration files, setting up package metadata, documentation, and generating the complete Python client codebase. One issue was identified in the generated __init__.py file where a warning string literal is missing an f prefix, preventing proper interpolation of the {_package_label} variable.
| warnings.warn( | ||
| "Could not determine the version of Python " | ||
| + "currently being used. To continue receiving " | ||
| + "updates for {_package_label}, ensure you are " |
There was a problem hiding this comment.
The string literal contains {_package_label} but is missing the f prefix, meaning the variable will not be interpolated and will be printed literally. Please add the f prefix to enable string interpolation.
| + "updates for {_package_label}, ensure you are " | |
| + f"updates for {_package_label}, ensure you are " |
I manually added the namespaces in librarian.yaml;
I ran: