Skip to content

Commit

Permalink
Use JotformStream.post_process
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Nov 2, 2023
1 parent 3755dd2 commit 89e01d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_jotform/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ class FoldersStream(JotformStream):
def post_process(self, row: dict, context: dict | None = None) -> dict:
"""Post-process a row of data."""
forms = {
form_id: super().post_process(form, context)
form_id: JotformStream.post_process(self, form, context)
for form_id, form in row.pop("forms", {}).items()
}
row["forms"] = forms
Expand Down

0 comments on commit 89e01d1

Please sign in to comment.