Skip to content

Commit

Permalink
updated module docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bsuryadevara committed Jul 12, 2023
1 parent cde3d8f commit cdd3e66
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions morpheus/utils/execution_chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,27 +15,6 @@
import inspect
import typing

# def execution_chain_annotations(*annotations):
# def inner_annotate(func):
# def wrapper(*args, **kwargs):
# _annocations = list(*annotations)
#
# result = func(*args, **kwargs)
# signature = inspect.signature(func)
#
# return {key: value for key, value in result.items() if key in signature.return_annotation}
#
# return wrapper
#
# return inner_annotate
#
#
# @execution_chain_annotations("x", "y", "z")
# def myfunc(a, b, c) -> (int, int, int):
# x, y, z = 1, 2, 3
#
# return x, y, z


class ExecutionChain:
"""
Expand Down

0 comments on commit cdd3e66

Please sign in to comment.