Skip to content

Commit 269289d

Browse files
authored
Merge pull request #674 from hkad98/tabular-exports
feat: add HTML and PDF to supported formats for tabular exports
2 parents 24692e9 + 19ac174 commit 269289d

File tree

1 file changed

+1
-1
lines changed
  • gooddata-sdk/gooddata_sdk/catalog/export

1 file changed

+1
-1
lines changed

gooddata-sdk/gooddata_sdk/catalog/export/request.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __attrs_post_init__(self) -> None:
7272
"""
7373
Validates that the provided format is supported and raises ValueError if not.
7474
"""
75-
supported_formats = ["CSV", "XLSX"]
75+
supported_formats = ["CSV", "XLSX", "HTML", "PDF"]
7676
if self.format not in supported_formats:
7777
raise ValueError(
7878
f"format '{self.format}' is not presented " f"in supported formats {','.join(supported_formats)}"

0 commit comments

Comments
 (0)