Skip to content

Commit

Permalink
use Union for Python 3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarbaugh committed Dec 15, 2024
1 parent 9df22f5 commit 82068df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_productboard/client.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json
from functools import cached_property
from pathlib import Path
from typing import Any
from typing import Any, Union
from urllib.parse import parse_qs, urlparse

from singer_sdk.authenticators import BearerTokenAuthenticator
Expand Down Expand Up @@ -42,7 +42,7 @@ def schema(self) -> dict:

def get_url_params(
self, context: Context, next_page_token: _TToken
) -> dict[str, Any] | str:
) -> Union[dict[str, Any], str]:

params = {}

Expand Down

0 comments on commit 82068df

Please sign in to comment.