Skip to content

Commit

Permalink
fix: corrected an indentation error
Browse files Browse the repository at this point in the history
  • Loading branch information
todd-elvers committed Sep 22, 2023
1 parent 81418cd commit 08bf3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbs/Fine_Tuning_REST_API_External_Test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@
" return [TrainingSetBase(**tsb) for tsb in response.json()]\n",
"\n",
" def add_image_to_training_set(self, training_set_id: str, image: str) -> str:\n",
" \"\"\" Adds an image to a training set, returning the id of the image added. \"\"\"\n",
" \"\"\" Adds an image to a training set, returning the id of the image added. \"\"\"\n",
" with open(image, 'rb') as image_file:\n",
" response = requests.post(\n",
" f\"{self.api_host}/v1/training-sets/{training_set_id}/images\",\n",
Expand Down

0 comments on commit 08bf3ac

Please sign in to comment.