From 24c08f6e91503d60cb22871087ca909402d1ea9a Mon Sep 17 00:00:00 2001
From: Ankit Goyal <ankit3goyal@gmail.com>
Date: Mon, 13 Feb 2023 18:47:30 -0800
Subject: [PATCH] Update flytekit/clis/auth/credentials.py

Co-authored-by: Kevin Su <pingsutw@gmail.com>
---
 flytekit/clis/auth/credentials.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flytekit/clis/auth/credentials.py b/flytekit/clis/auth/credentials.py
index fb748a7c6f9..efdc1b98701 100644
--- a/flytekit/clis/auth/credentials.py
+++ b/flytekit/clis/auth/credentials.py
@@ -11,7 +11,7 @@
 
 
 def get_client(
-    redirect_endpoint: str, client_id: str, scopes: List[str], auth_endpoint: str, token_endpoint: str, verify: bool
+    redirect_endpoint: str, client_id: str, scopes: List[str], auth_endpoint: str, token_endpoint: str, verify: Union[bool, str]
 ) -> AuthorizationClient:
     global _authorization_client
     if _authorization_client is not None and not _authorization_client.expired: