You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "/workspaces/upload_offline_conversion.py", line 223, in <module>
choices=[e.name for e in googleads_client.enums.ConsentStatusEnum],
NameError: name 'googleads_client' is not defined. Did you mean: 'GoogleAdsClient'?
Anything else we should know about your project / environment:
Using VCS remote explorer, therefore running in a docker image ubuntu 22.04
The text was updated successfully, but these errors were encountered:
@JJordanCCurnow thanks for pointing this out. Looks like googleads_client is accessed before it's initialized, so that's a bug we'll need to fix. I'll post a PR for it soon, meanwhile you can work around this by simply moving line 230 up to before the googleads_client variable is accessed.
Describe the bug:
when trying to run:
https://github.com/googleads/google-ads-python/blob/main/examples/remarketing/upload_offline_conversion.py
Steps to Reproduce:
Download and run :
https://github.com/googleads/google-ads-python/blob/main/examples/remarketing/upload_offline_conversion.py
from master branch with any (0 included) number of args, will trigger the error as its in the arg parser.
Expected behavior:
Program starts.
Client library version and API version:
pip Freeze
Request/Response Logs:
Anything else we should know about your project / environment:
The text was updated successfully, but these errors were encountered: