summaryrefslogtreecommitdiffstats
path: root/src/prompt_toolkit/styles/style.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-05 04:45:15 +0000
commit6dc655898df34ad424dfc467a8b276fdf31bd791 (patch)
tree0a3f3addbfc0b81e3850a628afe62ce830a8b0f3 /src/prompt_toolkit/styles/style.py
parentReleasing progress-linux version 3.0.43-2~progress7.99u1. (diff)
downloadprompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.tar.xz
prompt-toolkit-6dc655898df34ad424dfc467a8b276fdf31bd791.zip
Merging upstream version 3.0.46.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/prompt_toolkit/styles/style.py')
-rw-r--r--src/prompt_toolkit/styles/style.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/prompt_toolkit/styles/style.py b/src/prompt_toolkit/styles/style.py
index 1abee0f..fc8b31b 100644
--- a/src/prompt_toolkit/styles/style.py
+++ b/src/prompt_toolkit/styles/style.py
@@ -1,6 +1,7 @@
"""
Tool for creating styles from a dictionary.
"""
+
from __future__ import annotations
import itertools
@@ -72,7 +73,7 @@ def parse_color(text: str) -> str:
elif text in ("", "default"):
return text
- raise ValueError("Wrong color format %r" % text)
+ raise ValueError(f"Wrong color format {text!r}")
# Attributes, when they are not filled in by a style. None means that we take