From 178ea2ac1f6128f46f6d389da70dd7f1d8071e30 Mon Sep 17 00:00:00 2001 From: Mattijn van Hoek Date: Sun, 29 Oct 2023 18:50:43 +0100 Subject: [PATCH] format str --- altair/_magics.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/altair/_magics.py b/altair/_magics.py index c6eff89b2..5e773dd32 100644 --- a/altair/_magics.py +++ b/altair/_magics.py @@ -58,9 +58,7 @@ def _get_variable(name): ) if name not in ip.user_ns: raise NameError( - "argument '{}' does not match the name of any defined variable".format( - name - ) + "argument '{}' does not match the name of any defined variable".format(name) ) return ip.user_ns[name]