Skip to content

Commit

Permalink
Remove redundant variable
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Aug 26, 2024
1 parent be2da1c commit a2d6c55
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions singer_sdk/sinks/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -763,8 +763,7 @@ def process_batch_files(
tail,
mode="rb",
) as file:
context_file = file
table = pq.read_table(context_file)
table = pq.read_table(file)
context = {"records": table.to_pylist()}
self.process_batch(context)
else:
Expand Down

0 comments on commit a2d6c55

Please sign in to comment.