Skip to content

Commit

Permalink
style: fix formatting in record_selector.py
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] and natikgadzhi committed Feb 7, 2025
1 parent be05918 commit 6948f80
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ def filter_and_transform(
Until we decide to move this logic away from the selector, we made this method public so that users like AsyncJobRetriever could
share the logic of doing transformations on a set of records.
"""
filtered_data = self._filter(all_data, stream_state, stream_slice, next_page_token, stream_interval)
filtered_data = self._filter(
all_data, stream_state, stream_slice, next_page_token, stream_interval
)
transformed_data = self._transform(filtered_data, stream_state, stream_slice)
normalized_data = self._normalize_by_schema(transformed_data, schema=records_schema)
for data in normalized_data:
Expand Down

0 comments on commit 6948f80

Please sign in to comment.