Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions tap_jira/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ class CustomFieldContextStream(JiraStartAtPaginatedStream):
primary_keys = ("id",)
records_jsonpath = "$[values][*]" # Or override `parse_response`.
instance_name = "values"
state_partitioning_keys = () # type: ignore[assignment]

schema = th.PropertiesList(
th.Property("fieldId", th.StringType),
Expand Down Expand Up @@ -272,7 +271,6 @@ class CustomFieldOptionStream(JiraStartAtPaginatedStream):
primary_keys = ("id",)
records_jsonpath = "$[values][*]" # Or override `parse_response`.
instance_name = "values"
state_partitioning_keys = () # type: ignore[assignment]

schema = th.PropertiesList(
th.Property("fieldId", th.StringType),
Expand Down