From ab9a0d3e57c8035bed4177f851a7d8ffa0f1b51a Mon Sep 17 00:00:00 2001 From: 413Michele <413Michele@users.noreply.github.com> Date: Sun, 27 Jul 2025 12:22:09 +0200 Subject: [PATCH] Update formatter_functions.py Remove spurious parentheses --- src/calibre/utils/formatter_functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/utils/formatter_functions.py b/src/calibre/utils/formatter_functions.py index 3cd20916f0..b6cc1f1422 100644 --- a/src/calibre/utils/formatter_functions.py +++ b/src/calibre/utils/formatter_functions.py @@ -2805,10 +2805,10 @@ r''' ``globals(id[=expression] [, id[=expression]]*)`` -- Retrieves "global variables" that can be passed into the formatter.[/] The name ``id`` is the name of the global variable. It both declares and initializes local variables with the names of the -global variables passed in (the ``id`` parameters. If the corresponding variable is not +global variables passed in the ``id`` parameters. If the corresponding variable is not provided in the globals then it assigns that variable the provided default value. If there is no default value then the variable is set to the empty -string.) +string. ''') def evaluate(self, formatter, kwargs, mi, locals, *args):