Skip to content

Commit

Permalink
Fix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
ccl-core committed Dec 2, 2024
1 parent a9a5767 commit 0b5cdfd
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,8 @@ def _get_result(row):
value = None
elif is_repeated:
value = [
_cast_value(self.node.ctx, v, field.data_type)
for v in value
]
_cast_value(self.node.ctx, v, field.data_type) for v in value
]
else:
value = _cast_value(self.node.ctx, value, field.data_type)

Expand Down

0 comments on commit 0b5cdfd

Please sign in to comment.