Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kadner <ckadner@us.ibm.com>
  • Loading branch information
ckadner committed Oct 6, 2023
1 parent 7ab35b6 commit e3ff761
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# general
.env
.DS_Store
.run/
temp/

public/
target/
Expand Down
2 changes: 1 addition & 1 deletion docs/predictors/run-inference.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ This would give a response similar to the following:
{
"name": "predict",
"datatype": "FP32",
"shape": [1,1],
"shape": [1, 1],
"data": [8]
}
]
Expand Down
2 changes: 1 addition & 1 deletion docs/predictors/setup-storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ The response should look like the following:
{
"model_name": "sklearn-pvc-example__isvc-3d2daa3370",
"outputs": [
{"name": "predict", "datatype": "INT64", "shape": [1,1], "data": [8]}
{"name": "predict", "datatype": "INT64", "shape": [1, 1], "data": [8]}
]
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ This should give you a response like the following:
{
"name": "predict",
"datatype": "FP32",
"shape": [1,1],
"shape": [1, 1],
"data": [8]
}
]
Expand Down

0 comments on commit e3ff761

Please sign in to comment.