Skip to content

Commit

Permalink
fix some more typos
Browse files Browse the repository at this point in the history
  • Loading branch information
martinvonk committed Jan 17, 2024
1 parent ebb44f0 commit d8646d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions flopy/utils/gridgen.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def add_active_domain(self, feature, layers):
features_to_shapefile(feature, "polygon", shapefile_path)
else:
raise ValueError(
f"Feature must be a pathlike (shapefile) or array-like of geometries"
"Feature must be a pathlike (shapefile) or array-like of geometries"
)

# make sure shapefile exists
Expand Down Expand Up @@ -453,7 +453,7 @@ def add_refinement_features(self, features, featuretype, level, layers):
features_to_shapefile(features, featuretype, shapefile_path)
else:
raise ValueError(
f"Features must be a pathlike (shapefile) or array-like of geometries"
"Features must be a pathlike (shapefile) or array-like of geometries"
)

# make sure shapefile exists
Expand Down Expand Up @@ -883,7 +883,7 @@ def get_disu(

# ja -- this is being read is as one-based, which is also what is
# expected by the ModflowDisu constructor
ja = self.read_qgt_ja_dat(model_ws=self.model_ws, nja=nja)
ja = self.read_qtg_ja_dat(model_ws=self.model_ws, nja=nja)

# ivc
fldr = self.read_qtg_fldr_dat(model_ws=self.model_ws, nja=nja)
Expand All @@ -892,10 +892,10 @@ def get_disu(
cl1 = None
cl2 = None
# cl12
cl12 = self.read_qgt_cl_dat(model_ws=self.model_ws, nja=nja)
cl12 = self.read_qtg_cl_dat(model_ws=self.model_ws, nja=nja)

# fahl
fahl = self.read_gqt_fahl_dat(model_ws=self.model_ws, nja=nja)
fahl = self.read_qtg_fahl_dat(model_ws=self.model_ws, nja=nja)

# create dis object instance
disu = MfUsgDisU(
Expand Down

0 comments on commit d8646d0

Please sign in to comment.