Skip to content

Commit

Permalink
Update __init__.py (#82)
Browse files Browse the repository at this point in the history
* Update __init__.py

* removed "_"
  • Loading branch information
EternalLearner42 authored and luandy64 committed Jan 29, 2019
1 parent 724c719 commit d603d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_hubspot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def _sync_contact_vids(catalog, vids, schema, bumble_bee):
time_extracted = utils.now()
mdata = metadata.to_map(catalog.get('metadata'))

for _, record in data.items():
for record in data.values():
record = bumble_bee.transform(record, schema, mdata)
singer.write_record("contacts", record, catalog.get('stream_alias'), time_extracted=time_extracted)

Expand Down

0 comments on commit d603d25

Please sign in to comment.