Skip to content

Commit

Permalink
Commit from GitHub Actions (Build Notebooks)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tonks684 committed Aug 15, 2024
1 parent f6565cf commit 7f20542
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exercise.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@
" ndarray: The cropped image array.\n",
" \"\"\"\n",
" # Dimension of input array\n",
" _, width, height = img.shape\n",
" width, height = img.shape\n",
"\n",
" # Generate random coordinates for the crop\n",
" max_y = height - crop_size\n",
Expand Down
2 changes: 1 addition & 1 deletion solution.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@
" ndarray: The cropped image array.\n",
" \"\"\"\n",
" # Dimension of input array\n",
" _, width, height = img.shape\n",
" width, height = img.shape\n",
"\n",
" # Generate random coordinates for the crop\n",
" max_y = height - crop_size\n",
Expand Down

0 comments on commit 7f20542

Please sign in to comment.