Skip to content

Commit

Permalink
Leverage RAW content when tupling if necessary. Closes #1076.
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Nov 18, 2023
1 parent ae8682c commit efc4c23
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/falconpy/_result/_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,8 @@ def tupled(self) -> Tuple[int, # \o_
_content: Optional[Union[Dict[str, Union[dict, list]], bytes]] = None
if self.resources.binary:
_content = bytes(self.resources)
elif self.raw:
_content = self.raw
else:
_content = {
"meta": self.meta.data,
Expand Down

0 comments on commit efc4c23

Please sign in to comment.