Skip to content

Commit

Permalink
fix(str): add consistent fixed and free format approach
Browse files Browse the repository at this point in the history
closes #832
  • Loading branch information
jdhughes-usgs committed Mar 30, 2020
1 parent 564d372 commit 5dd8e1e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flopy/modflow/mfstr.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,8 +734,7 @@ def load(f, model, nper=None, ext_unit_dict=None):
for i in fmt6:
istart += i
tt = line[istart:].strip().split()
for iaux in range(len(aux_names)):
name = aux_names[iaux]
for iaux, name in enumerate(aux_names):
current[ibnd][name] = np.float32(tt[iaux])

# convert indices to zero-based
Expand Down

0 comments on commit 5dd8e1e

Please sign in to comment.