From f27f44bbb63801c675cf031ce480e965bf2994a7 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Wed, 2 Mar 2022 14:41:57 +0100 Subject: [PATCH] Post-processing black reformat --- swash/processing/post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swash/processing/post.py b/swash/processing/post.py index 6ad9a62..4276f2d 100644 --- a/swash/processing/post.py +++ b/swash/processing/post.py @@ -21,6 +21,6 @@ botl = read_nohead_scalar(root.joinpath("botl.dat"), n) dep = read_nohead_scalar(root.joinpath("dep.dat"), n) watl = read_nohead_scalar(root.joinpath("watl.dat"), n) -plt.plot(dep.T-botl.T, label="dep") +plt.plot(dep.T - botl.T, label="dep") plt.plot(-botl.T[:, 0], label="botl") plt.show(block=True)