Skip to content

Commit

Permalink
refactor(msfsr2): write sfr_botm_conflicts.chk to model workspace (#2002
Browse files Browse the repository at this point in the history
)
  • Loading branch information
wpbonelli authored Nov 14, 2023
1 parent af8954b commit 4eea187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flopy/modflow/mfsfr2.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from numpy.lib import recfunctions

from ..pakbase import Package
from ..utils import MfList, import_optional_dependency
from ..utils import MfList
from ..utils.flopy_io import line_parse
from ..utils.optionblock import OptionBlock
from ..utils.recarray_utils import create_empty_recarray
Expand Down Expand Up @@ -1175,7 +1175,7 @@ def assign_layers(self, adjust_botms=False, pad=1.0):
)
header += "\n"

with open(logfile, "w") as log:
with open(os.path.join(self.parent.model_ws, logfile), "w") as log:
log.write(header)
a = np.array(l).transpose()
for line in a:
Expand Down

0 comments on commit 4eea187

Please sign in to comment.