From cfad6bcf390d67260d555c58e6031a4efbdb5f14 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 12 Feb 2025 08:02:31 +0530 Subject: [PATCH] pep8 --- src/calibre/utils/formatter_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/utils/formatter_functions.py b/src/calibre/utils/formatter_functions.py index d690f7494d..ac0848c7d0 100644 --- a/src/calibre/utils/formatter_functions.py +++ b/src/calibre/utils/formatter_functions.py @@ -3386,7 +3386,7 @@ See also the functions :ref:`make_url`, :ref:`make_url_extended` and :ref:`encod raise ValueError( _('In {} the third argument of a group must be 0, 1, or 2, not {}').format('query_string', f)) query_args.append(f'{args[i]}={funcs[int(f)](args[i+1].strip())}') - return "&".join(query_args) + return '&'.join(query_args) class BuiltinEncodeForURL(BuiltinFormatterFunction):