-
Notifications
You must be signed in to change notification settings - Fork 63
chore: librarian generate pull request: 20260226T203906Z #1300
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -316,6 +316,8 @@ | |||||||||||||||||||||||||||||
| from google.cloud.bigtable_admin_v2.types.table import SchemaBundle | ||||||||||||||||||||||||||||||
| from google.cloud.bigtable_admin_v2.types.table import Snapshot | ||||||||||||||||||||||||||||||
| from google.cloud.bigtable_admin_v2.types.table import Table | ||||||||||||||||||||||||||||||
| from google.cloud.bigtable_admin_v2.types.table import TieredStorageConfig | ||||||||||||||||||||||||||||||
| from google.cloud.bigtable_admin_v2.types.table import TieredStorageRule | ||||||||||||||||||||||||||||||
| from google.cloud.bigtable_admin_v2.types.table import RestoreSourceType | ||||||||||||||||||||||||||||||
| from google.cloud.bigtable_admin_v2.types.types import Type | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
|
@@ -441,6 +443,8 @@ | |||||||||||||||||||||||||||||
| "SchemaBundle", | ||||||||||||||||||||||||||||||
| "Snapshot", | ||||||||||||||||||||||||||||||
| "Table", | ||||||||||||||||||||||||||||||
| "TieredStorageConfig", | ||||||||||||||||||||||||||||||
| "TieredStorageRule", | ||||||||||||||||||||||||||||||
| "RestoreSourceType", | ||||||||||||||||||||||||||||||
| "Type", | ||||||||||||||||||||||||||||||
|
Comment on lines
443
to
449
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. To improve readability and follow common Python conventions, the contents of
Suggested change
References
|
||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -150,6 +150,8 @@ | |||||||||||||||||||||||||
| from .types.table import SchemaBundle | ||||||||||||||||||||||||||
| from .types.table import Snapshot | ||||||||||||||||||||||||||
| from .types.table import Table | ||||||||||||||||||||||||||
| from .types.table import TieredStorageConfig | ||||||||||||||||||||||||||
| from .types.table import TieredStorageRule | ||||||||||||||||||||||||||
| from .types.table import RestoreSourceType | ||||||||||||||||||||||||||
|
Comment on lines
150
to
155
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. For better maintainability and adherence to PEP 8, the imports from
Suggested change
References
|
||||||||||||||||||||||||||
| from .types.types import Type | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
|
|
@@ -353,6 +355,8 @@ def _get_version(dependency_name): | |||||||||||||||||||||||||
| "StandardReadRemoteWrites", | ||||||||||||||||||||||||||
| "StorageType", | ||||||||||||||||||||||||||
| "Table", | ||||||||||||||||||||||||||
| "TieredStorageConfig", | ||||||||||||||||||||||||||
| "TieredStorageRule", | ||||||||||||||||||||||||||
| "Type", | ||||||||||||||||||||||||||
| "UndeleteTableMetadata", | ||||||||||||||||||||||||||
| "UndeleteTableRequest", | ||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -139,6 +139,8 @@ | |||||||||||||||||||||||||||||
| SchemaBundle, | ||||||||||||||||||||||||||||||
| Snapshot, | ||||||||||||||||||||||||||||||
| Table, | ||||||||||||||||||||||||||||||
| TieredStorageConfig, | ||||||||||||||||||||||||||||||
| TieredStorageRule, | ||||||||||||||||||||||||||||||
| RestoreSourceType, | ||||||||||||||||||||||||||||||
|
Comment on lines
139
to
144
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. To improve readability and follow common Python conventions, the imported names from
Suggested change
References
|
||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||
| from .types import ( | ||||||||||||||||||||||||||||||
|
|
@@ -263,6 +265,8 @@ | |||||||||||||||||||||||||||||
| "SchemaBundle", | ||||||||||||||||||||||||||||||
| "Snapshot", | ||||||||||||||||||||||||||||||
| "Table", | ||||||||||||||||||||||||||||||
| "TieredStorageConfig", | ||||||||||||||||||||||||||||||
| "TieredStorageRule", | ||||||||||||||||||||||||||||||
| "RestoreSourceType", | ||||||||||||||||||||||||||||||
| "Type", | ||||||||||||||||||||||||||||||
|
Comment on lines
265
to
271
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. To improve readability and follow common Python conventions, the contents of
Suggested change
References
|
||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||
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.
For better maintainability and adherence to PEP 8, the imports from
google.cloud.bigtable_admin_v2.types.tableshould be sorted alphabetically.References