Skip to content

Commit c84c6fa

Browse files
committed
Fix issues with interceptor annotations
Change-Id: I157356ebe9bdd4a7b4e2ca4c9c7f587a732f235f
1 parent 82ec61c commit c84c6fa

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

google/ads/googleads/interceptors/exception_interceptor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import grpc
2626

2727
from google.ads.googleads.interceptors import Interceptor, ContinuationType
28-
from google.ads.googleads.response_wrappers import _UnaryStreamWrapper, _UnaryUnaryWrapper
28+
from google.ads.googleads.interceptors.response_wrappers import _UnaryStreamWrapper, _UnaryUnaryWrapper
2929

3030

3131
class ExceptionInterceptor(

google/ads/googleads/interceptors/logging_interceptor.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ def _get_customer_id(self, request: ProtobufMessageType) -> Optional[str]:
142142
Args:
143143
request: An instance of a request proto message.
144144
"""
145-
breakpoint()
146145
if hasattr(request, "customer_id"):
147146
return getattr(request, "customer_id")
148147
elif hasattr(request, "resource_name"):

0 commit comments

Comments
 (0)