File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 30
30
"custom_metadata" ,
31
31
"embedded_metadata" ,
32
32
"transformation" ,
33
+ "checks" ,
33
34
]
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ def __init__(
19
19
overwrite_custom_metadata : bool = None ,
20
20
custom_metadata : json = None ,
21
21
transformation : json = None ,
22
+ checks : str = None ,
22
23
):
23
24
if use_unique_file_name is not None :
24
25
self .use_unique_file_name = use_unique_file_name
@@ -48,3 +49,5 @@ def __init__(
48
49
self .custom_metadata = custom_metadata
49
50
if transformation is not None :
50
51
self .transformation = transformation
52
+ if checks is not None :
53
+ self .checks = checks
Original file line number Diff line number Diff line change 8
8
9
9
setuptools .setup (
10
10
name = "imagekitio" ,
11
- version = "4.0.1 " ,
11
+ version = "4.1.0 " ,
12
12
description = "Python wrapper for the ImageKit API" ,
13
13
long_description = long_description ,
14
14
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments