Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ version = {attr = "versioneer.get_version"}

[tool.black]
line-length = 120
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
target-version = ['py310', 'py311', 'py312', 'py313', 'py314']
force-exclude = "tableauserverclient/bin/*"

[tool.mypy]
Expand Down
3 changes: 2 additions & 1 deletion tableauserverclient/server/endpoint/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import io
import os
from contextlib import closing
from typing_extensions import Concatenate, ParamSpec
from urllib.parse import urljoin, urlparse
from tableauserverclient import datetime_helpers as datetime

Expand All @@ -13,8 +12,10 @@
from typing import (
Any,
Callable,
Concatenate,
Generic,
Optional,
ParamSpec,
Comment thread
jacalata marked this conversation as resolved.
TYPE_CHECKING,
TypeVar,
Union,
Expand Down
3 changes: 2 additions & 1 deletion tableauserverclient/server/endpoint/jobs_endpoint.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import logging
from typing_extensions import Self, overload
from typing import overload
from typing_extensions import Self


from tableauserverclient.models import JobItem, BackgroundJobItem, PaginationItem
Expand Down
5 changes: 1 addition & 4 deletions tableauserverclient/server/request_factory.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import xml.etree.ElementTree as ET
from typing import Any, Callable, TypeVar, TYPE_CHECKING
from typing import Any, Callable, Concatenate, ParamSpec, TypeVar, TYPE_CHECKING
Comment thread
jacalata marked this conversation as resolved.
from collections.abc import Iterable

from typing_extensions import ParamSpec

from requests.packages.urllib3.fields import RequestField
from requests.packages.urllib3.filepost import encode_multipart_formdata
from typing_extensions import Concatenate

from tableauserverclient.models import *

Expand Down
Loading