Skip to content

Commit 1066bfb

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
README updated
Code formated
1 parent 53d90e5 commit 1066bfb

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
- API version: 4.0
88
- Package version: 25.1.0
99

10+
## SDK and API Version Compatibility:
11+
12+
- SDK Version 25.1 and Later: Starting from SDK version 25.1, all subsequent versions are compatible with API Version v4.0.
13+
- SDK Version 24.12 and Earlier: These versions are compatible with API Version v3.0.
14+
1015
## Demo applications
1116

1217
[Scan QR](https://products.aspose.app/barcode/scanqr) | [Generate Barcode](https://products.aspose.app/barcode/generate) | [Recognize Barcode](https://products.aspose.app/barcode/recognize)

aspose_barcode_cloud/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ def __init__(self, msg, path_to_item=None) -> None:
115115

116116

117117
class ApiException(OpenApiException):
118+
118119
def __init__(
119120
self,
120121
status=None,

aspose_barcode_cloud/rest.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ def getheader(self, name, default=None):
3737

3838

3939
class RESTClientObject(object):
40+
4041
def __init__(self, configuration, pools_size=4, maxsize=None):
4142
# urllib3.PoolManager will pass all kw parameters to connectionpool
4243
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
@@ -353,6 +354,7 @@ def close(self):
353354

354355

355356
class ApiException(Exception):
357+
356358
def __init__(self, status=0, reason=None, http_resp=None):
357359
# type: (int, str, RESTResponse) -> None
358360
if http_resp:

0 commit comments

Comments
 (0)