| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
OK, let's think about this as it's defined in L89 which we hide from the rendered output. Maybe we should include an empty version before that cell though?
cc @rossbar as the original author of hiding the content of the dict
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Summary
Fixes an undefined variable (request_opts) in the MNIST download example.
Problem
The documentation example includes the following line:
However, request_opts is never defined in the example, which results in a NameError when users try to run the code.
Solution
Removed the unused **request_opts argument from the requests.get call to ensure the example runs correctly without requiring additional context.
Changes
Impact
Notes
This change keeps the example aligned with standard usage of requests.get and avoids introducing unnecessary variables.