Skip to content

Commit

Permalink
fix linting/Payload
Browse files Browse the repository at this point in the history
Signed-off-by: Karanjot Singh <[email protected]>
  • Loading branch information
0xquark committed Oct 28, 2024
1 parent 314da81 commit 00f5a3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyatlan/model/packages/asset_export(basic).py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def direct(self) -> AssetExportPackage:
"""
Set up the package to deliver the export via direct download.
"""
self._delivery_type = "direct"
self._delivery_type = "DIRECT"
self._add_delivery_parameters()
return self

Expand All @@ -131,7 +131,7 @@ def email(self, email_addresses: List[str]) -> AssetExportPackage:
Set up the package to deliver the export via email.
:param email_addresses: List of email addresses to send the export to.
"""
self._delivery_type = "email"
self._delivery_type = "EMAIL"
self._email_addresses = email_addresses
self._add_delivery_parameters()

Expand Down Expand Up @@ -253,7 +253,7 @@ def _get_metadata(self) -> WorkflowMetadata:
labels={
"orchestration.atlan.com/certified": "true",
"orchestration.atlan.com/preview": "true",
"orchestration.atlan.com/source": {self._NAME},
"orchestration.atlan.com/source": self._NAME,
"orchestration.atlan.com/sourceCategory": "utility",
"orchestration.atlan.com/type": "custom",
"orchestration.atlan.com/verified": "true",
Expand Down

0 comments on commit 00f5a3b

Please sign in to comment.