Skip to content

Commit

Permalink
Merge pull request #287 from asappresearch/extensions-and-pickle-fall…
Browse files Browse the repository at this point in the history
…back_nmatthews-asapp

Correct extensions metadata and add pickle fallbacks
  • Loading branch information
jeremyasapp committed May 6, 2020
2 parents 8ed2b1f + ba7783b commit ee9f057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flambe/compile/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __call__(self, stash: Optional[Dict[str, Any]] = None, **keywords: Any) -> C
newkeywords.update(keywords)
compiled = self.component_subclass.compile(
_flambe_custom_factory_name=self.factory_method,
_flambe_extensions=self._extensions,
_flambe_extensions=self.aggregate_extensions_metadata(),
_flambe_stash=stash,
**newkeywords)
self._compiled = compiled
Expand Down

0 comments on commit ee9f057

Please sign in to comment.