| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
There was a problem hiding this comment.
This pull request introduces the google-maps-mapmanagement package, adding the generated Python client library for the Google Maps Map Management v2 API. This includes sync and async clients, transports, types, documentation, generated samples, and release configuration updates. The review feedback suggests sorting the __all__ lists alphabetically in both the main package and types initialization files to improve code readability and maintainability.
Sorry, something went wrong.
| __all__ = ( | ||
| "MapManagementAsyncClient", | ||
| "CreateMapConfigRequest", | ||
| "CreateMapContextConfigRequest", | ||
| "CreateStyleConfigRequest", | ||
| "DeleteMapConfigRequest", | ||
| "DeleteMapContextConfigRequest", | ||
| "DeleteStyleConfigRequest", | ||
| "GetMapConfigRequest", | ||
| "GetMapContextConfigRequest", | ||
| "GetStyleConfigRequest", | ||
| "ListMapConfigsRequest", | ||
| "ListMapConfigsResponse", | ||
| "ListMapContextConfigsRequest", | ||
| "ListMapContextConfigsResponse", | ||
| "ListStyleConfigsRequest", | ||
| "ListStyleConfigsResponse", | ||
| "MapConfig", | ||
| "MapContextConfig", | ||
| "MapFeatures", | ||
| "MapManagementClient", | ||
| "MapRenderingType", | ||
| "StyleConfig", | ||
| "StyleConfigView", | ||
| "UpdateMapConfigRequest", | ||
| "UpdateMapContextConfigRequest", | ||
| "UpdateStyleConfigRequest", | ||
| ) |
There was a problem hiding this comment.
The __all__ list in a Python module should be alphabetically sorted to improve readability and maintainability.
__all__ = (
"CreateMapConfigRequest",
"CreateMapContextConfigRequest",
"CreateStyleConfigRequest",
"DeleteMapConfigRequest",
"DeleteMapContextConfigRequest",
"DeleteStyleConfigRequest",
"GetMapConfigRequest",
"GetMapContextConfigRequest",
"GetStyleConfigRequest",
"ListMapConfigsRequest",
"ListMapConfigsResponse",
"ListMapContextConfigsRequest",
"ListMapContextConfigsResponse",
"ListStyleConfigsRequest",
"ListStyleConfigsResponse",
"MapConfig",
"MapContextConfig",
"MapFeatures",
"MapManagementAsyncClient",
"MapManagementClient",
"MapRenderingType",
"StyleConfig",
"StyleConfigView",
"UpdateMapConfigRequest",
"UpdateMapContextConfigRequest",
"UpdateStyleConfigRequest",
)
Sorry, something went wrong.
| __all__ = ( | ||
| "CreateMapConfigRequest", | ||
| "CreateMapContextConfigRequest", | ||
| "CreateStyleConfigRequest", | ||
| "DeleteMapConfigRequest", | ||
| "DeleteMapContextConfigRequest", | ||
| "DeleteStyleConfigRequest", | ||
| "GetMapConfigRequest", | ||
| "GetMapContextConfigRequest", | ||
| "GetStyleConfigRequest", | ||
| "ListMapConfigsRequest", | ||
| "ListMapConfigsResponse", | ||
| "ListMapContextConfigsRequest", | ||
| "ListMapContextConfigsResponse", | ||
| "ListStyleConfigsRequest", | ||
| "ListStyleConfigsResponse", | ||
| "MapConfig", | ||
| "MapContextConfig", | ||
| "MapFeatures", | ||
| "StyleConfig", | ||
| "UpdateMapConfigRequest", | ||
| "UpdateMapContextConfigRequest", | ||
| "UpdateStyleConfigRequest", | ||
| "MapRenderingType", | ||
| "StyleConfigView", | ||
| ) |
There was a problem hiding this comment.
To improve maintainability, please keep the __all__ list sorted alphabetically.
__all__ = (
"CreateMapConfigRequest",
"CreateMapContextConfigRequest",
"CreateStyleConfigRequest",
"DeleteMapConfigRequest",
"DeleteMapContextConfigRequest",
"DeleteStyleConfigRequest",
"GetMapConfigRequest",
"GetMapContextConfigRequest",
"GetStyleConfigRequest",
"ListMapConfigsRequest",
"ListMapConfigsResponse",
"ListMapContextConfigsRequest",
"ListMapContextConfigsResponse",
"ListStyleConfigsRequest",
"ListStyleConfigsResponse",
"MapConfig",
"MapContextConfig",
"MapFeatures",
"MapRenderingType",
"StyleConfig",
"StyleConfigView",
"UpdateMapConfigRequest",
"UpdateMapContextConfigRequest",
"UpdateStyleConfigRequest",
)
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
PiperOrigin-RevId: 963642371
Fixes b/545715827