Skip to content

Commit

Permalink
Merge pull request #5 from instructure/hardcoded_id
Browse files Browse the repository at this point in the history
Hardcoded account id
  • Loading branch information
balazs-szogi-instructure authored Aug 27, 2024
2 parents 0b51782 + 5829219 commit 968103d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_canvas_catalog/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_url_params(
next_page_token: Any | None,
) -> dict[str, Any]:
params = super().get_url_params(context, next_page_token)
params["accountId"] = self.config.get("account_id", "")
params["accountId"] = 1

return params

Expand Down

0 comments on commit 968103d

Please sign in to comment.