Skip to content

Commit

Permalink
Merge pull request #79 from NLeSC/fail
Browse files Browse the repository at this point in the history
fixed #78
  • Loading branch information
felipeZ authored Oct 10, 2018
2 parents 0694684 + fe16685 commit f6ff609
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@


## Removed

* `noodles.file` unused module


## Changed

* Added `SerPath` class to serial namespace


## Fixed
* `Fail` class serialization
5 changes: 3 additions & 2 deletions noodles/serial/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from pathlib import Path
import base64

from ..interface import (PromisedObject, Quote)
from ..interface import (Fail, PromisedObject, Quote)
from ..lib import (object_name, look_up, importable, unwrap, is_unwrapped)
from ..workflow import (Workflow, NodeData, FunctionNode, ArgumentAddress,
ArgumentKind, reset_workflow, get_workflow)
Expand Down Expand Up @@ -242,7 +242,8 @@ def registry():
Workflow: SerWorkflow(),
PromisedObject: SerPromisedObject(),
Quote: SerReasonableObject(Quote),
Path: SerPath()
Path: SerPath(),
Fail: SerReasonableObject(Fail)
},
hooks={
'<method>': SerMethod(),
Expand Down

0 comments on commit f6ff609

Please sign in to comment.