From 1c22aecc3b5e9b7ab380583974cace519a9438aa Mon Sep 17 00:00:00 2001 From: Clemens Brunner Date: Sun, 11 Feb 2024 14:06:13 +0100 Subject: [PATCH] Add missing space --- pybv/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybv/io.py b/pybv/io.py index 6bd5cd1..a4fe7c4 100644 --- a/pybv/io.py +++ b/pybv/io.py @@ -511,7 +511,7 @@ def _chk_events(events, ch_names, n_times): if not isinstance(event["description"], (int, str)): raise ValueError( f"events: when `type` is {event['type']}, `description` must be str" - "or int" + " or int" ) event["description"] = str(event["description"])