Skip to content

Commit 141816e

Browse files
committed
black/isort
1 parent 852141a commit 141816e

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

autotest/prt/test_prt_fmi10.py

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,19 @@
3535
tdis_rc = [[1.0, 1, 1.0]]
3636
porosity = 0.1
3737

38+
3839
def chdhead(x):
3940
return x * 10.0 / 100.0
4041

4142

4243
def get_tri(workspace, targets) -> Triangle:
4344
workspace.mkdir(exist_ok=True)
44-
tri = Triangle(angle=angle, maximum_area=max_area, model_ws=workspace, exe_name=targets.triangle)
45+
tri = Triangle(
46+
angle=angle,
47+
maximum_area=max_area,
48+
model_ws=workspace,
49+
exe_name=targets.triangle,
50+
)
4551
tri.add_polygon(active_domain)
4652
tri.build()
4753
return tri
@@ -53,9 +59,7 @@ def build_gwf_sim(name, ws, targets):
5359
sim = flopy.mf6.MFSimulation(
5460
sim_name=name, version="mf6", exe_name=targets.mf6, sim_ws=ws
5561
)
56-
tdis = flopy.mf6.ModflowTdis(
57-
sim, time_units="DAYS", perioddata=tdis_rc
58-
)
62+
tdis = flopy.mf6.ModflowTdis(sim, time_units="DAYS", perioddata=tdis_rc)
5963
gwf = flopy.mf6.ModflowGwf(sim, modelname=gwfname, save_flows=True)
6064
ims = flopy.mf6.ModflowIms(
6165
sim,
@@ -81,7 +85,10 @@ def build_gwf_sim(name, ws, targets):
8185
cell2d=cell2d,
8286
)
8387
npf = flopy.mf6.ModflowGwfnpf(
84-
gwf, xt3doptions=[(True)], save_specific_discharge=True, save_saturation=True
88+
gwf,
89+
xt3doptions=[(True)],
90+
save_specific_discharge=True,
91+
save_saturation=True,
8592
)
8693
ic = flopy.mf6.ModflowGwfic(gwf)
8794
chdlist = []

0 commit comments

Comments
 (0)