File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 4
4
from typing import Any , List , Optional
5
5
from unstructured_client import utils
6
6
from unstructured_client .models import errors , operations , shared
7
+ from unstructured_client .utils ._decorators import suggest_defining_url_if_401 # human code
7
8
8
9
class General :
9
10
sdk_configuration : SDKConfiguration
@@ -12,7 +13,7 @@ def __init__(self, sdk_config: SDKConfiguration) -> None:
12
13
self .sdk_configuration = sdk_config
13
14
14
15
15
-
16
+ @ suggest_defining_url_if_401 # human code
16
17
def partition (self , request : Optional [shared .PartitionParameters ], retries : Optional [utils .RetryConfig ] = None ) -> operations .PartitionResponse :
17
18
r"""Pipeline 1"""
18
19
base_url = utils .template_url (* self .sdk_configuration .get_server_details ())
@@ -66,4 +67,4 @@ def do_request():
66
67
67
68
return res
68
69
69
-
70
+
You can’t perform that action at this time.
0 commit comments