From f6e25a4ab1ca72a7fd1479574c02af27105f3229 Mon Sep 17 00:00:00 2001 From: lzbht <1120465339@qq.com> Date: Fri, 15 Nov 2024 17:27:20 +0800 Subject: [PATCH] Fix README.md errors --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0346791..1eea826 100644 --- a/README.md +++ b/README.md @@ -107,10 +107,9 @@ However, this is a pain when setting up a development or testing environment, so the `InsecureClient` as a convenience: ```py -from authzed.api.v1 import Client -from grpcutil import bearer_token_credentials +from authzed.api.v1 import InsecureClient -client = Client( +client = InsecureClient( "spicedb:50051", "my super secret token" )