From 18052a0598fdf166595b3ae03ef77fadd1f87f30 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 23:51:19 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- fluorescence_assay/plotting.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fluorescence_assay/plotting.py b/fluorescence_assay/plotting.py index 8e23565..38a90f0 100644 --- a/fluorescence_assay/plotting.py +++ b/fluorescence_assay/plotting.py @@ -165,7 +165,7 @@ def plot_absorption_spectrum( ] ) - ll = np.arange(lmin, lmax + lstep, lstep) + ll = np.arange(lmin, lmax + lstep, lstep) axes.plot(ll, data, color=color, label=label) @@ -185,9 +185,7 @@ def plot_absorption_across_row( for i in range(len(concentrations)): - value = self._plate_read.get_well( - section, f"{row}{i+1}", cycle - )[wavelength] + value = self._plate_read.get_well(section, f"{row}{i+1}", cycle)[wavelength] values.append(value)