Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
[DO NOT MERGE] AutoML: minor gapic generator changes#7224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -33,14 +33,11 @@ | ||
| from google.cloud.automl_v1beta1.gapic import auto_ml_client_config | ||
| from google.cloud.automl_v1beta1.gapic import enums | ||
| from google.cloud.automl_v1beta1.gapic.transports import auto_ml_grpc_transport | ||
| from google.cloud.automl_v1beta1.proto import data_items_pb2 | ||
| from google.cloud.automl_v1beta1.proto import dataset_pb2 | ||
| from google.cloud.automl_v1beta1.proto import io_pb2 | ||
| from google.cloud.automl_v1beta1.proto import model_evaluation_pb2 | ||
| from google.cloud.automl_v1beta1.proto import model_pb2 | ||
| from google.cloud.automl_v1beta1.proto import operations_pb2 as proto_operations_pb2 | ||
| from google.cloud.automl_v1beta1.proto import prediction_service_pb2 | ||
| from google.cloud.automl_v1beta1.proto import prediction_service_pb2_grpc | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Weird -- if those imports weren't being used, why did our linting not fail before? | ||
| from google.cloud.automl_v1beta1.proto import service_pb2 | ||
| from google.cloud.automl_v1beta1.proto import service_pb2_grpc | ||
| from google.longrunning import operations_pb2 as longrunning_operations_pb2 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -32,8 +32,17 @@ | ||
| prediction_service_grpc_transport, | ||
| ) | ||
| from google.cloud.automl_v1beta1.proto import data_items_pb2 | ||
| from google.cloud.automl_v1beta1.proto import dataset_pb2 | ||
| from google.cloud.automl_v1beta1.proto import io_pb2 | ||
| from google.cloud.automl_v1beta1.proto import model_evaluation_pb2 | ||
| from google.cloud.automl_v1beta1.proto import model_pb2 | ||
| from google.cloud.automl_v1beta1.proto import operations_pb2 as proto_operations_pb2 | ||
| from google.cloud.automl_v1beta1.proto import prediction_service_pb2 | ||
| from google.cloud.automl_v1beta1.proto import prediction_service_pb2_grpc | ||
| from google.cloud.automl_v1beta1.proto import service_pb2 | ||
| from google.cloud.automl_v1beta1.proto import service_pb2_grpc | ||
| from google.longrunning import operations_pb2 as longrunning_operations_pb2 | ||
| from google.protobuf import empty_pb2 | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This can't be right -- non of these imports are used. | ||
| _GAPIC_LIBRARY_VERSION = pkg_resources.get_distribution("google-cloud-automl").version | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess the generator has decided to sort the wrapper classes?