Skip to content

Commit

Permalink
Revert bad change
Browse files Browse the repository at this point in the history
  • Loading branch information
jterry64 committed Sep 16, 2024
1 parent a8b6c0d commit e35fc95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/datapump/clients/data_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def create_aux_asset(
self, dataset: str, version: str, payload: Dict[str, Any]
) -> Dict[str, Any]:
uri = f"{GLOBALS.data_api_uri}/dataset/{dataset}/{version}/assets"
return self.get_version(ValidMethods.post, uri, payload)["data"]
return self._send_request(ValidMethods.post, uri, payload)["data"]

def append(
self, dataset: str, version: str, source_uris: List[str]
Expand Down

0 comments on commit e35fc95

Please sign in to comment.