Skip to content

Commit 0276cd8

Browse files
format cmd messages prettier
1 parent 655fa3e commit 0276cd8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

schimpy/schism_hotstart.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def create_hotstart(self):
249249
) # this is required to get depths for elevation
250250
self.hotstart_ini = {}
251251
for v in self.variables:
252-
print("creating hotstart for %s" % v)
252+
print("Creating hotstart for %s" % v)
253253
initializer = self.info[v]["initializer"]
254254

255255
if (
@@ -1272,9 +1272,9 @@ def interp_from_mesh(
12721272
mesh1_idx = cKDTree(hgrid1)
12731273

12741274
# Bulk query
1275-
print("interpolating horizontal grid from %s" % (hgrid_fn))
1275+
print("\tinterpolating horizontal grid from %s" % (hgrid_fn))
12761276
dist, indices = mesh1_idx.query(hgrid2)
1277-
print("horizontal interpolation completed!")
1277+
print("\thorizontal interpolation completed!")
12781278
dist = np.asarray(dist, dtype=float)
12791279
indices = np.asarray(indices)
12801280

@@ -1305,7 +1305,7 @@ def interp_from_mesh(
13051305
kind="nearest",
13061306
)
13071307
vout[j, p, :] = f(z2)
1308-
print("vertical grid interpolation completed!")
1308+
print("\tvertical grid interpolation completed!")
13091309
else: # nearest or equation
13101310
x = hgrid2[diff_points, 0]
13111311
y = hgrid2[diff_points, 1]

0 commit comments

Comments
 (0)