From c0bf463dfe151d586c9cb1c5f906c6cb1bdf2fa1 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Thu, 11 Jan 2024 00:17:59 -0500 Subject: [PATCH] Fix Colab authentication issue (#1877) --- geemap/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geemap/common.py b/geemap/common.py index 57d4d84368..17a66b5ae9 100644 --- a/geemap/common.py +++ b/geemap/common.py @@ -61,7 +61,7 @@ def ee_initialize( if auth_mode is None: if in_colab_shell(): - auth_mode = "colab" + auth_mode = "notebook" else: auth_mode = "localhost"