Skip to content

Commit

Permalink
pg 443 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Nov 23, 2019
1 parent 89dff2d commit ce990c3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 42 deletions.
81 changes: 40 additions & 41 deletions ch13/ch13_part1.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ch13/ch13_part1.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@

imgdir_path = pathlib.Path('cat_dog_images')

file_list = [str(path) for path in imgdir_path.glob('*.jpg')]
file_list = sorted([str(path) for path in imgdir_path.glob('*.jpg')])

print(file_list)

Expand Down

0 comments on commit ce990c3

Please sign in to comment.