8000 Sep 21, 2023, 10:42 PM · LehmD/server-client-python@c1e17ce · GitHub
[go: up one dir, main page]

Skip to content

Commit c1e17ce

Browse files
committed
Sep 21, 2023, 10:42 PM
1 parent 9f2e870 commit c1e17ce

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

tableauserverclient/server/endpoint/favorites_endpoint.py

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
from .endpoint import Endpoint, api
2-
from tableauserverclient.server import RequestFactory
3-
from tableauserverclient.models import FavoriteItem, UserItem, Resource
4-
5-
from typing import Optional, TYPE_CHECKING
6-
from ..request_options import RequestOptions
7-
from ...models import DatasourceItem, FlowItem, ProjectItem, ViewItem, WorkbookItem, TableauItem, MetricItem
8-
2+
from requests import Response
93
from tableauserverclient.helpers.logging import logger
4+
from tableauserverclient.models import (
5+
DatasourceItem,
6+
FavoriteItem,
7+
FlowItem,
8+
MetricItem,
9+
ProjectItem,
10+
Resource,
11+
TableauItem,
12+
UserItem,
13+
ViewItem,
14+
WorkbookItem,
15+
)
16+
from tableauserverclient.server import RequestFactory, RequestOptions
17+
from typing import Optional
1018

1119

1220
class Favorites(Endpoint):

0 commit comments

Comments
 (0)
0