Skip to content

Commit ab5795b

Browse files
committed
fix: use hardcoded module names instead of __name__
1 parent b9cff23 commit ab5795b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • packages/google-api-core/google/api_core/gapic_v1

packages/google-api-core/google/api_core/gapic_v1/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
# limitations under the License.
1414

1515
__lazy_modules__ = {
16-
f"{__name__}.client_info",
17-
f"{__name__}.config",
18-
f"{__name__}.config_async",
19-
f"{__name__}.method",
20-
f"{__name__}.method_async",
21-
f"{__name__}.routing_header",
16+
"google.api_core.gapic_v1.client_info",
17+
"google.api_core.gapic_v1.config",
18+
"google.api_core.gapic_v1.config_async",
19+
"google.api_core.gapic_v1.method",
20+
"google.api_core.gapic_v1.method_async",
21+
"google.api_core.gapic_v1.routing_header",
2222
}
2323

2424
from google.api_core.gapic_v1 import client_info

0 commit comments

Comments
 (0)