From 7251efb0a785c89eec297f078586e284951e468f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 04:16:36 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/nwbinspector/checks/nwbfile_metadata.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/nwbinspector/checks/nwbfile_metadata.py b/src/nwbinspector/checks/nwbfile_metadata.py index a16bd3cc6..25bfe91a8 100644 --- a/src/nwbinspector/checks/nwbfile_metadata.py +++ b/src/nwbinspector/checks/nwbfile_metadata.py @@ -32,9 +32,7 @@ def check_session_start_time_old_date(nwbfile: NWBFile): dummy_time = dummy_time.astimezone() if session_start_time <= dummy_time: return InspectorMessage( - message=( - f"The session_start_time ({session_start_time}) may not be set to the true date of the recording." - ) + message=(f"The session_start_time ({session_start_time}) may not be set to the true date of the recording.") )