We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 067e6b0 commit 52e5ecbCopy full SHA for 52e5ecb
owlbot.py
@@ -54,10 +54,18 @@
54
55
if renamed_path.exists():
56
s.replace(
57
- renamed_path / "__init__.py",
58
- "from google.cloud.storage_v2 import gapic_version as package_version",
59
- "from google.cloud._storage_v2 import gapic_version as package_version",
60
- )
+ renamed_path / "**/*.py",
+ "google.cloud.storage_v2",
+ "google.cloud._storage_v2",
+ )
61
+
62
+ # Fix imports in the unit tests
63
+ s.replace(
64
+ "tests/unit/gapic/storage_v2/**/*.py",
65
66
67
68
69
70
s.remove_staging_dirs()
71
0 commit comments