While downloading reports from Python SDK, we get the ability to pass various headers. One of them being `use_raw_enum_values` which makes sure that the column headers of the downloaded report have the enum values rather than UI display values as headers.
Current Python SDK is not behaving as expected. Every other header except `use_raw_enum_values`, works as desired.
Details:
SDK Version: v201609
Query:
`report_downloader.DownloadReportWithAwql(
report_query, 'CSV', output_file, skip_report_header=True,
skip_column_header=False, skip_report_summary=True, use_raw_enum_values=True, include_zero_impressions=False)`
Am I missing something?