Skip to content

Commit

Permalink
Typo fixes from #65 (#75)
Browse files Browse the repository at this point in the history
This PR isolates the typo fixes proposed in #65. I'm still not
comfortable to add a new CI script without an explanation of how to run
it locally, so this just takes the concrete changes from that PR.

---------

Co-authored-by: Yaroslav Halchenko <[email protected]>
  • Loading branch information
cthoyt and yarikoptic authored Nov 15, 2024
1 parent 23ba196 commit a098b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pystow/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import pandas as pd

__all__ = [
# Classses
# Classes
"Cached",
"CachedPickle",
"CachedJSON",
Expand Down
2 changes: 1 addition & 1 deletion src/pystow/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def download(
url,
path,
)
# Solution for progres bar from https://stackoverflow.com/a/63831344/5775947
# Solution for progress bar from https://stackoverflow.com/a/63831344/5775947
total_size = int(response.headers.get("Content-Length", 0))
# Decompress if needed
response.raw.read = partial(response.raw.read, decode_content=True) # type:ignore
Expand Down

0 comments on commit a098b90

Please sign in to comment.