Hi,
I'm trying to run the get_account_heirarchy.py example and I keep running into this error:
Traceback (most recent call last):
File ".\get_account_hierarchy.py", line 202, in <module>
main(google_ads_client, args.login_customer_id)
File ".\get_account_hierarchy.py", line 101, in main
File "C:\Python\Python38\lib\site-packages\google\protobuf\message.py", line 94, in __hash__
raise TypeError('unhashable object')
TypeError: unhashable object
I'm running this command from the project directory:
python .\get_account_hierarchy.py -l 0123456789
Also, I've tried:
python .\get_account_hierarchy.py --manager_customer_id 0123456789
(the argument/number is actually our google ads account customer id and I do have the yaml file with our creds in the directory)
I think I'm sending the arguments wrong in the command line - I haven't used arg.parser before.
Could you please tell me what I'm doing wrong? Any help would be appreciated