Skip to content

Commit 001dc18

Browse files
Correct comment placement
1 parent bbacfd5 commit 001dc18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/geophires_monte_carlo/MC_GeoPHIRES3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,6 @@ def main(command_line_args=None):
451451
results_pd = pd.read_csv(output_file)
452452
df = pd.DataFrame(results_pd)
453453

454-
# Compute the stats along the specified axes.
455454
if len(results) < 1:
456455
# TODO surface actual exceptions instead of giving this generic message
457456
raise RuntimeError(
@@ -460,6 +459,7 @@ def main(command_line_args=None):
460459
f'when run with your input file.'
461460
)
462461

462+
# Compute the stats along the specified axes.
463463
mins = np.nanmin(results, 0)
464464
maxs = np.nanmax(results, 0)
465465
medians = np.nanmedian(results, 0)

0 commit comments

Comments
 (0)