From 8838962cb1b1fef2250c2f3832053eae0bb0fbbe Mon Sep 17 00:00:00 2001 From: Vivaan Singhvi <122464874+vivaansinghvi07@users.noreply.github.com> Date: Sat, 15 Feb 2025 17:28:05 -0500 Subject: [PATCH] Update teeplot/teeplot.py Co-authored-by: Matthew Andres Moreno --- teeplot/teeplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teeplot/teeplot.py b/teeplot/teeplot.py index 22f5d21..f8ac357 100644 --- a/teeplot/teeplot.py +++ b/teeplot/teeplot.py @@ -383,7 +383,7 @@ def teed(*args, **kwargs): def validate_teewrap_kwargs(teeplot_kwargs: dict[str, object]): if not all(k.startswith("teeplot_") for k in teeplot_kwargs): raise ValueError( - "The only keyword arguments passed into the `teewrap` decorator can be teeplot arguments" + "The `teewrap` decorator only accepts teeplot_* keyword arguments" )