From 742c151123de3ca76cabe01110556f0fcb16f589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= Date: Wed, 19 Jun 2024 13:21:17 +0200 Subject: [PATCH] Fix raised warning (#729) --- geoviews/plotting/bokeh/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geoviews/plotting/bokeh/plot.py b/geoviews/plotting/bokeh/plot.py index 5c59212b..f03f1f16 100644 --- a/geoviews/plotting/bokeh/plot.py +++ b/geoviews/plotting/bokeh/plot.py @@ -64,7 +64,7 @@ def __init__(self, element, **params): defaults=False) self.show_bounds = not any(not sb for sb in show_bounds.get('show_bounds', [])) if self.show_grid: - param.main.warning( + param.main.param.warning( f'Grid lines do not reflect {self.projection}; to do so ' 'multiply the current element by gv.feature.grid() ' 'and disable the show_grid option.'