Skip to content

Commit

Permalink
Remformatted with black
Browse files Browse the repository at this point in the history
  • Loading branch information
Camille Woicekowska committed Jan 12, 2024
1 parent 7455ccb commit 3c60197
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions flopy/modflow/mfdis.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,17 +343,17 @@ def get_final_totim(self):
"""
return self.get_totim()[-1]

def get_per_stp_perlen(self):
"""
Get lists for stress periods, time steps, and period lengths in the model.
Get lists for stress periods, time steps, and period lengths in the model.
Returns
-------
per: list of ints
Stress periods in the model
stp: list of ints
Timesteps in each stress period
Timesteps in each stress period
perlen: list of ints
Length of each timestep
"""
Expand All @@ -364,10 +364,10 @@ def get_per_stp_perlen(self):
stp = []
perlen = []
for iper in range(self.nper):
per.append(iper+1) # Use 1-based indexing
per.append(iper + 1) # Use 1-based indexing
stp.append(nstp[iper])
perlen.append(nperlen[iper])
return per, stp, perlen
return per, stp, perlen

def get_kstp_kper_toffset(self, t=0.0, use_cached_totim=False):
"""
Expand Down

0 comments on commit 3c60197

Please sign in to comment.