Skip to content

Commit

Permalink
Revised soft dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Brandt committed Jan 15, 2025
1 parent 0497751 commit 8ca1a04
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jwst/emicorr/emicorr.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
try:
import bottleneck as bn
except ImportError as err:
msg = "Please install the bottleneck package for improved performance. Falling back on numpy. To install, use pip install bottleneck."
warnings.warn(msg)
warnings.warn("Please install the bottleneck package for improved "
"performance. Falling back on numpy. To install, "
"use pip install bottleneck.")
bn = np # set bn as an alias for numpy

subarray_clocks = {
Expand Down

0 comments on commit 8ca1a04

Please sign in to comment.