Skip to content

Commit

Permalink
initial_state fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zvizdo committed Sep 30, 2020
1 parent 0a34b57 commit 3df97b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target_bigquery/processhandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self, logger, **kwargs):
self.validate_records = kwargs.get("validate_records", True)
self.table_configs = kwargs.get("table_configs", {}) or {}

self.INIT_STATE = kwargs.get("init_state") or {}
self.INIT_STATE = kwargs.get("initial_state") or {}
self.STATE = State(**self.INIT_STATE)

self.rows = {}
Expand Down

0 comments on commit 3df97b9

Please sign in to comment.