Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 24, 2023
1 parent c78b564 commit fbbce05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tap_circle_ci/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def http_headers(self) -> dict:
def get_url_params(
self,
context: dict | None, # noqa: ARG002
next_page_token: Any | None,
next_page_token: str | None,
) -> dict[str, Any]:
"""Return a dictionary of values to be used in URL parameterization."""
params: dict = {}
Expand Down
2 changes: 1 addition & 1 deletion tap_circle_ci/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_child_context(
def get_url_params(
self,
context: dict | None,
next_page_token: t.Any | None,
next_page_token: str | None,
) -> dict[str, t.Any]:
"""Return a dictionary of values to be used in URL parameterization."""
params = super().get_url_params(context, next_page_token)
Expand Down

0 comments on commit fbbce05

Please sign in to comment.