Skip to content

Commit b031d01

Browse files
committed
chore: absolute imports
1 parent 3c91a2e commit b031d01

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tableauserverclient/models/project_item.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
from defusedxml.ElementTree import fromstring
66

7-
from .exceptions import UnpopulatedPropertyError
8-
from .property_decorators import property_is_enum, property_not_empty
7+
from tableauserverclient.models.exceptions import UnpopulatedPropertyError
8+
from tableauserverclient.models.property_decorators import property_is_enum, property_not_empty
99

1010

1111
class ProjectItem(object):

tableauserverclient/server/endpoint/projects_endpoint.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
import logging
22

3-
from .default_permissions_endpoint import _DefaultPermissionsEndpoint
4-
from .endpoint import QuerysetEndpoint, api, XML_CONTENT_TYPE
5-
from .exceptions import MissingRequiredFieldError
6-
from .permissions_endpoint import _PermissionsEndpoint
3+
from tableauserverclient.server.endpoint.default_permissions_endpoint import _DefaultPermissionsEndpoint
4+
from tableauserverclient.server.endpoint.endpoint import QuerysetEndpoint, api, XML_CONTENT_TYPE
5+
from tableauserverclient.server.endpoint.exceptions import MissingRequiredFieldError
6+
from tableauserverclient.server.endpoint.permissions_endpoint import _PermissionsEndpoint
77
from tableauserverclient.server import RequestFactory, RequestOptions
88
from tableauserverclient.models import ProjectItem, PaginationItem, Resource
99

1010
from typing import List, Optional, Tuple, TYPE_CHECKING
1111

1212
if TYPE_CHECKING:
13-
from ..server import Server
14-
from ..request_options import RequestOptions
13+
from tableauserverclient.server.server import Server
14+
from tableauserverclient.server.request_options import RequestOptions
1515

1616
from tableauserverclient.helpers.logging import logger
1717

0 commit comments

Comments
 (0)