From fc8d7c2c4961b1c84bf1c790922a3110334f346e Mon Sep 17 00:00:00 2001 From: Niklas Weber Date: Fri, 19 Jul 2024 14:08:46 +0200 Subject: [PATCH] change type hint from dict to Any for **kwargs in aes.init see https://github.com/has2k1/plotnine/issues/844 --- plotnine/mapping/aes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotnine/mapping/aes.py b/plotnine/mapping/aes.py index 1b2e3d03b..fb514f0ae 100644 --- a/plotnine/mapping/aes.py +++ b/plotnine/mapping/aes.py @@ -87,7 +87,7 @@ class aes(Dict[str, Any]): x aesthetic mapping y : str | array_like | scalar y aesthetic mapping - **kwargs : dict + **kwargs : Any Other aesthetic mappings Notes