Skip to content

Commit 6ec8f22

Browse files
Minor fix (#136)
* `CHANGELOG.md` updated * PyMilo Exception Types added to `pymilo\__init__.py` * PyMilo Exception Types added to `pymilo\exceptions\__init__.py` * CHANGELOG.md * Update CHANGELOG.md * doc : minor fix in CHANGELOG.md --------- Co-authored-by: sepandhaghighi <[email protected]>
1 parent adb7d15 commit 6ec8f22

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Added
9+
- PyMilo exception types added in `pymilo/exceptions/__init__.py`
10+
- PyMilo exception types added in `pymilo/__init__.py`
11+
### Changed
812
## [1.0] - 2024-09-16
913
### Added
1014
- Compression method test in `ML Streaming` RESTful testcases

pymilo/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"""PyMilo modules."""
33
from .pymilo_param import PYMILO_VERSION
44
from .pymilo_obj import Export, Import
5+
from .exceptions import PymiloException, PymiloSerializationException, PymiloDeserializationException
56

67
__version__ = PYMILO_VERSION

pymilo/exceptions/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# -*- coding: utf-8 -*-
22
"""PyMilo exceptions."""
3+
from .pymilo_exception import PymiloException
4+
from .serialize_exception import PymiloSerializationException
5+
from .deserialize_exception import PymiloDeserializationException

0 commit comments

Comments
 (0)