Skip to content

Commit 2a90173

Browse files
SK-2116 Update masking methods for detect in Python SDKs v2 (#181)
* SK-2116 updated the masking method enum (#180) * [AUTOMATED] Private Release 2.0.0b5.dev0+121f9dc --------- Co-authored-by: raushan-skyflow <raushan-skyflow@users.noreply.github.com>
1 parent a9ff1cc commit 2a90173

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
if sys.version_info < (3, 8):
99
raise RuntimeError("skyflow requires Python 3.8+")
10-
current_version = '2.0.0b5'
10+
current_version = '2.0.0b5.dev0+121f9dc'
1111

1212
setup(
1313
name='skyflow',

skyflow/generated/rest/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
2323
"X-Fern-Language": "Python",
2424
"X-Fern-SDK-Name": "skyflow.generated.rest",
25-
"X-Fern-SDK-Version": "0.0.200",
25+
"X-Fern-SDK-Version": "0.0.209",
2626
}
2727
headers["Authorization"] = f"Bearer {self._get_token()}"
2828
return headers

skyflow/generated/rest/files/types/deidentify_image_request_masking_method.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
import typing
44

5-
DeidentifyImageRequestMaskingMethod = typing.Union[typing.Literal["blackout", "blur"], typing.Any]
5+
DeidentifyImageRequestMaskingMethod = typing.Union[typing.Literal["blackbox", "blur"], typing.Any]

skyflow/generated/rest/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0"
1+
__version__ = "2.0.9"

skyflow/utils/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SDK_VERSION = '2.0.0b5'
1+
SDK_VERSION = '2.0.0b5.dev0+121f9dc'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from enum import Enum
22

33
class MaskingMethod(Enum):
4-
BLACKOUT= "blackout"
4+
BLACKBOX= "blackbox"
55
BLUR= "blur"

0 commit comments

Comments
 (0)