From 1441bae6e47b0c5921e6075b00e20ca9ae2363d1 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Wed, 4 May 2022 10:53:51 +0200 Subject: [PATCH] Fix useless line --- olaflow/processing/animate.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/olaflow/processing/animate.py b/olaflow/processing/animate.py index 4873e99..9598028 100644 --- a/olaflow/processing/animate.py +++ b/olaflow/processing/animate.py @@ -38,8 +38,6 @@ with ( ) as f: model = pickle.load(f) -i0 = np.argmin(np.abs((model.x - x0) + 1j * (model.z - z0))) - x0, idx0 = np.unique(model.x.astype(np.half), return_inverse=True) z0, idz0 = np.unique(model.z.astype(np.half), return_inverse=True)