Skip to content

Commit

Permalink
streamname has to exist on Form before the parent ctor is called
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohit Chatterjee committed Dec 12, 2024
1 parent 4aad552 commit 7063435
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,10 @@ class Form(IncrementalStream):
primary_key = "id"

def __init__(self, start_date, app_id, name, xmlns, schema, **kwargs):
self.streamname = name
super().__init__(**kwargs)
self.app_id = app_id
self._cursor_value = parse_datetime_with_microseconds(start_date)
self.streamname = name
self.xmlns = xmlns
self.schema = schema

Expand Down

0 comments on commit 7063435

Please sign in to comment.