Skip to content

Commit

Permalink
Merge pull request rasbt#83 from rasbt/ch13-sort
Browse files Browse the repository at this point in the history
pg 443 fixes
  • Loading branch information
rasbt authored Nov 23, 2019
2 parents 89dff2d + ce990c3 commit c943222
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 c943222

Please sign in to comment.