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
There's a missing type definition in extensions.py file, causing the following exception:
Traceback (most recent call last):
File "/home/airflow/.local/lib/python3.7/site-packages/bingads/v13/internal/bulk/bulk_object.py", line 107, in convert_to_values
mapping.convert_to_csv(self, row_values)
File "/home/airflow/.local/lib/python3.7/site-packages/bingads/v13/internal/bulk/mappings.py", line 112, in convert_to_csv
self.entity_to_csv(entity, row_values)
File "/home/airflow/.local/lib/python3.7/site-packages/bingads/v13/internal/extensions.py", line 223, in campaign_biddingscheme_to_csv
entity_biddingscheme_to_csv(bulk_campaign.campaign, row_values)
File "/home/airflow/.local/lib/python3.7/site-packages/bingads/v13/internal/extensions.py", line 252, in entity_biddingscheme_to_csv
row_values[_StringTable.TargetImpressionShare] = TargetImpressionShare(entity.BiddingScheme.TargetImpressionShare)
NameError: name 'TargetImpressionShare' is not defined
You can easily verify it's a bug by checking this file and line:
There's a missing type definition in
extensions.py
file, causing the following exception:You can easily verify it's a bug by checking this file and line:
BingAds-Python-SDK/bingads/v13/internal/extensions.py
Line 252 in 373a586
Type
TargetImpressionShare
is used, but never imported or defined in this file.The text was updated successfully, but these errors were encountered: