Skip to content

Commit

Permalink
CHG: need numpy
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuMorlighem committed Feb 1, 2025
1 parent 6ec7aad commit c65a23d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/m/classes/hydrologyshakti.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import numpy as np
from fielddisplay import fielddisplay
from checkfield import checkfield
from WriteData import WriteData
Expand All @@ -22,7 +23,7 @@ def __init__(self): # {{{
self.spchead = float('NaN')
self.neumannflux = float('NaN')
self.relaxation = 0
self.storage = 0
self.storage = np.nan
self.requested_outputs = []

#set defaults
Expand Down

0 comments on commit c65a23d

Please sign in to comment.