From afb19e8394e1c40ff7b6dbaf7a51324421f5e5af Mon Sep 17 00:00:00 2001 From: Sylvia Whittle <86117496+SylviaWhittle@users.noreply.github.com> Date: Wed, 24 Jan 2024 09:37:13 +0000 Subject: [PATCH] Remove unnecessary line break Co-authored-by: Neil Shephard --- topofileformats/asd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topofileformats/asd.py b/topofileformats/asd.py index 92ae939..b8640b7 100644 --- a/topofileformats/asd.py +++ b/topofileformats/asd.py @@ -199,7 +199,7 @@ def load_asd(file_path: Path, channel: str): pixel_to_nanometre_scaling_factor = pixel_to_nanometre_scaling_factor_x if channel == header_dict["channel1"]: - logger.info(f"Requested channel {channel} matches first channel in file: " f"{header_dict['channel1']}") + logger.info(f"Requested channel {channel} matches first channel in file: {header_dict['channel1']}") elif channel == header_dict["channel2"]: logger.info(f"Requested channel {channel} matches second channel in file: " f"{header_dict['channel2']}")