From 3d32f3f90727671a64ac258b0b1241fa8fc9edcb Mon Sep 17 00:00:00 2001 From: Davide Fiocco Date: Mon, 31 Jan 2022 14:22:27 +0100 Subject: [PATCH] Fix Google Collab runtime warning message (#38) This tries to address https://github.com/karolzak/ipyplot/issues/37 --- ipyplot/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipyplot/__init__.py b/ipyplot/__init__.py index 21454ef..58dcb33 100644 --- a/ipyplot/__init__.py +++ b/ipyplot/__init__.py @@ -23,6 +23,6 @@ """ WARNING! Google Colab Environment detected! You might encounter issues while running in Google Colab environment. - If images are not displaying properly please try setting `base_64` param to `True`. + If images are not displaying properly please try setting `force_b64` param to `True`. """ # NOQA E501 )