From 79e85eed7c89f31c16399bfcc1bb098f0ae5c920 Mon Sep 17 00:00:00 2001 From: Han Xiao Date: Tue, 21 Jun 2022 17:43:37 +0200 Subject: [PATCH] fix: miscalling clip_server in clip_client --- client/clip_client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/clip_client/__init__.py b/client/clip_client/__init__.py index 0efc371dd..980cc7bd1 100644 --- a/client/clip_client/__init__.py +++ b/client/clip_client/__init__.py @@ -5,6 +5,6 @@ from clip_client.client import Client if 'NO_VERSION_CHECK' not in os.environ: - from clip_server.helper import is_latest_version + from clip_client.helper import is_latest_version is_latest_version(github_repo='clip-as-service')