Skip to content

Commit 149a417

Browse files
ANKUR DWIVEDIANKUR DWIVEDI
ANKUR DWIVEDI
authored and
ANKUR DWIVEDI
committed
added checks parameter
1 parent 43f8922 commit 149a417

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

imagekitio/constants/files.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@
3030
"custom_metadata",
3131
"embedded_metadata",
3232
"transformation",
33+
"checks",
3334
]

imagekitio/models/UploadFileRequestOptions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def __init__(
1919
overwrite_custom_metadata: bool = None,
2020
custom_metadata: json = None,
2121
transformation: json = None,
22+
checks: str = None,
2223
):
2324
if use_unique_file_name is not None:
2425
self.use_unique_file_name = use_unique_file_name
@@ -48,3 +49,5 @@ def __init__(
4849
self.custom_metadata = custom_metadata
4950
if transformation is not None:
5051
self.transformation = transformation
52+
if checks is not None:
53+
self.checks = checks

setup.py

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

99
setuptools.setup(
1010
name="imagekitio",
11-
version="4.0.1",
11+
version="4.1.0",
1212
description="Python wrapper for the ImageKit API",
1313
long_description=long_description,
1414
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)