From 7ccb5a424f53fdbc2a67802b85ef0c8a84967b6f Mon Sep 17 00:00:00 2001 From: Derek Homeier Date: Wed, 2 Aug 2023 16:33:56 +0200 Subject: [PATCH] Raise `DeprecationWarning` for `BqplotScatterLayerState` --- glue_jupyter/bqplot/scatter/layer_artist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 glue_jupyter/bqplot/scatter/layer_artist.py diff --git a/glue_jupyter/bqplot/scatter/layer_artist.py b/glue_jupyter/bqplot/scatter/layer_artist.py old mode 100755 new mode 100644 index b0f96de1..9d997658 --- a/glue_jupyter/bqplot/scatter/layer_artist.py +++ b/glue_jupyter/bqplot/scatter/layer_artist.py @@ -64,8 +64,8 @@ # Kept for backward compatibility with <= 0.17 class BqplotScatterLayerState(ScatterLayerState): - warnings.warn("`BqplotScatterLayerState` is deprecated and will be removed " - " in a future version. Use `ScatterLayerState` instead") + warnings.warn("`BqplotScatterLayerState` is deprecated and will be removed in a " + "future version. Use `ScatterLayerState` instead", DeprecationWarning) class BqplotScatterLayerArtist(LayerArtist):