Skip to content

Commit d77bc42

Browse files
committedDec 5, 2022
Fixed bug in get_model_processing_details method
1 parent 415e499 commit d77bc42

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎modzy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
from .client import ApiClient # noqa
77
from .edge.client import EdgeClient
8-
__version__ = '0.10.2'
8+
__version__ = '0.10.3'
99

1010
logging.getLogger(__name__).addHandler(logging.NullHandler())

‎modzy/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def get_model_processing_details(self, model, version):
7171
"""
7272
model_id = Model._coerce_identifier(model)
7373

74-
endpoint = "/resources/processing/models"
74+
endpoint = "/resources/processing/engines"
7575

7676
result = self._api_client.http.get(endpoint)
7777

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040
# removed in 0.7.1 test_suite='tests',
4141
# removed in 0.7.1 tests_require=test_requirements,
4242
url='https://github.com/modzy/sdk-python',
43-
version='0.10.2',
43+
version='0.10.3',
4444
zip_safe=False,
4545
)

0 commit comments

Comments
 (0)
Please sign in to comment.