Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: minor edits, CSS fixes, and one 404 fix #331

Merged
merged 3 commits into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions deerlab/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,8 +689,7 @@ def read_pickle(filename):
filename : string
Path to the ``.pkl`` file to load.


.. warning:: Loading pickled data received from untrusted sources can be unsafe. See `here<https://docs.python.org/3/library/pickle.html>`_.
.. warning:: It is possible to construct malicious pickle data which will execute arbitrary code during unpickling. Never unpickle data that could have come from an untrusted source, or that could have been tampered with. See `here <https://docs.python.org/3/library/pickle.html>`_ for more information.

"""
if '.pkl' not in filename:
Expand Down
Loading