Skip to content

Commit

Permalink
Use _ for unused return value (makes line shorter to pass lint)
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Apr 19, 2024
1 parent 3c63706 commit bb7d7f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/_pyinstaller/hook-numpy.py
Expand Up @@ -18,7 +18,7 @@
# communal Conda bin directory. DLLs from NumPy's dependencies must also be
# collected to capture MKL, OpenBlas, OpenMP, etc.
from PyInstaller.utils.hooks import conda_support
data_samples = conda_support.collect_dynamic_libs("numpy", dependencies=True)
_ = conda_support.collect_dynamic_libs("numpy", dependencies=True)

# Submodules PyInstaller cannot detect. `_dtype_ctypes` is only imported
# from C and `_multiarray_tests` is used in tests (which are not packed).
Expand Down

0 comments on commit bb7d7f3

Please sign in to comment.