nbaldwin commited on
Commit
f69619f
1 Parent(s): 36a99d9

Proper Doc

Browse files
Files changed (1) hide show
  1. README.md +2 -7
README.md CHANGED
@@ -1,7 +1,6 @@
1
  ---
2
  license: mit
3
  ---
4
-
5
  # Table of Contents
6
 
7
  * [LCToolFlow](#LCToolFlow)
@@ -70,16 +69,12 @@ This method instantiates the flow from a configuration file
70
  #### run
71
 
72
  ```python
73
- def run(input_data: Dict[str, Any]) -> Dict[str, Any]
74
  ```
75
 
76
  This method runs the flow. It runs the backend on the input data.
77
 
78
  **Arguments**:
79
 
80
- - `input_data` (`Dict[str, Any]`): The input data of the flow.
81
-
82
- **Returns**:
83
-
84
- `Dict[str, Any]`: The output data of the flow.
85
 
 
1
  ---
2
  license: mit
3
  ---
 
4
  # Table of Contents
5
 
6
  * [LCToolFlow](#LCToolFlow)
 
69
  #### run
70
 
71
  ```python
72
+ def run(input_message: FlowMessage)
73
  ```
74
 
75
  This method runs the flow. It runs the backend on the input data.
76
 
77
  **Arguments**:
78
 
79
+ - `input_message` (`FlowMessage`): The input message of the flow.
 
 
 
 
80