Skip to content

Commit

Permalink
moved type: ignore to correct line
Browse files Browse the repository at this point in the history
  • Loading branch information
BuzzCutNorman committed Feb 21, 2024
1 parent 6ece47d commit efcc71e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions singer_sdk/sinks/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,8 +691,8 @@ def process_batch_files(
gzip_open(file) if encoding.compression == "gzip" else file
)
context = {
"records": [deserialize_json(line) for line in context_file]
} # type: ignore[attr-defined]
"records": [deserialize_json(line) for line in context_file] # type: ignore[attr-defined]
}
self.process_batch(context)
elif (
importlib.util.find_spec("pyarrow")
Expand Down

0 comments on commit efcc71e

Please sign in to comment.