Skip to content

Commit

Permalink
Sep 21, 2023, 10:42 PM
Browse files Browse the repository at this point in the history
  • Loading branch information
jacalata committed Sep 22, 2023
1 parent 9f2e870 commit c1e17ce
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions tableauserverclient/server/endpoint/favorites_endpoint.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
from .endpoint import Endpoint, api
from tableauserverclient.server import RequestFactory
from tableauserverclient.models import FavoriteItem, UserItem, Resource

from typing import Optional, TYPE_CHECKING
from ..request_options import RequestOptions
from ...models import DatasourceItem, FlowItem, ProjectItem, ViewItem, WorkbookItem, TableauItem, MetricItem

from requests import Response
from tableauserverclient.helpers.logging import logger
from tableauserverclient.models import (
DatasourceItem,
FavoriteItem,
FlowItem,
MetricItem,
ProjectItem,
Resource,
TableauItem,
UserItem,
ViewItem,
WorkbookItem,
)
from tableauserverclient.server import RequestFactory, RequestOptions
from typing import Optional


class Favorites(Endpoint):
Expand Down

0 comments on commit c1e17ce

Please sign in to comment.