Skip to content

Commit

Permalink
Fix black (#8288)
Browse files Browse the repository at this point in the history
### Summary & Motivation

### How I Tested These Changes
  • Loading branch information
johannkm committed Jun 9, 2022
1 parent 947a9f6 commit d14ae4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion docs/content/concepts/testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -298,5 +298,7 @@ You can also provide input values using <PyObject object="JobDefinition" method=
```python file=/concepts/ops_jobs_graphs/jobs.py startafter=start_execute_in_process_input endbefore=end_execute_in_process_input
graph_result = wires_input.execute_in_process(input_values={"x": 5})

job_result = the_job.execute_in_process(input_values={"x": 6}) # Overrides existing input value
job_result = the_job.execute_in_process(
input_values={"x": 6}
) # Overrides existing input value
```
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,7 @@ def wires_input(x):
# start_execute_in_process_input
graph_result = wires_input.execute_in_process(input_values={"x": 5})

job_result = the_job.execute_in_process(input_values={"x": 6}) # Overrides existing input value
job_result = the_job.execute_in_process(
input_values={"x": 6}
) # Overrides existing input value
# end_execute_in_process_input

1 comment on commit d14ae4c

@vercel
Copy link

@vercel vercel bot commented on d14ae4c Jun 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.