10000 chore: absolute imports for favorites by jorwoods · Pull Request #1415 · tableau/server-client-python · GitHub
[go: up one dir, main page]

Skip to content

chore: absolute imports for favorites #1415

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 26, 2024
Merged
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
14 changes: 7 additions & 7 deletions tableauserverclient/models/favorites_item.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import logging

from defusedxml.ElementTree import fromstring
from .tableau_types import TableauItem
from tableauserverclient.models.tableau_types import TableauItem

from .datasource_item import DatasourceItem
from .flow_item import FlowItem
from .project_item import ProjectItem
from .metric_item import MetricItem
from .view_item import ViewItem
from .workbook_item import WorkbookItem
from tableauserverclient.models.datasource_item import DatasourceItem
from tableauserverclient.models.flow_item import FlowItem
from tableauserverclient.models.project_item import ProjectItem
from tableauserverclient.models.metric_item import MetricItem
from tableauserverclient.models.view_item import ViewItem
from tableauserverclient.models.workbook_item import WorkbookItem
from typing import Dict, List

from tableauserverclient.helpers.logging import logger
Expand Down
2 changes: 1 addition & 1 deletion tableauserverclient/server/endpoint/favorites_endpoint.py
575E
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .endpoint import Endpoint, api
from tableauserverclient.server.endpoint.endpoint import Endpoint, api
from requests import Response
from tableauserverclient.helpers.logging import logger
from tableauserverclient.models import (
Expand Down
Loading
0