Skip to content

Commit

Permalink
* fix type
Browse files Browse the repository at this point in the history
* isort and black linting
  • Loading branch information
jdhughes-usgs committed Jul 16, 2023
1 parent d6c6a8f commit e518dd8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions flopy/mf6/data/mffileaccess.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,14 @@ def _write_layer(
ilay=None,
):
header_data = self._get_header(
modelgrid, modeltime, stress_period, precision, text, fname, ilay=ilay, data=data,
modelgrid,
modeltime,
stress_period,
precision,
text,
fname,
ilay=ilay,
data=data,
)
header_data.tofile(fd)
data.tofile(fd)
Expand Down Expand Up @@ -288,7 +295,7 @@ def _get_header(
text=text,
m1=m1,
m2=m2,
m3-m3,
m3=m3,
pertim=pertim,
totim=totim,
kstp=1,
Expand Down

0 comments on commit e518dd8

Please sign in to comment.