From 8db8d064c3d5cebc1b0fbaf6eeeae00df7488780 Mon Sep 17 00:00:00 2001 From: Zain Hoda <7146154+zainhoda@users.noreply.github.com> Date: Fri, 7 Jul 2023 00:21:31 -0400 Subject: [PATCH] update input --- pyproject.toml | 2 +- src/vanna/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f4d5377d..4277ecad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vanna" -version = "0.0.5" +version = "0.0.6" authors = [ { name="Zain Hoda", email="zain@vanna.ai" }, ] diff --git a/src/vanna/__init__.py b/src/vanna/__init__.py index ef8008fd..dbeedf43 100644 --- a/src/vanna/__init__.py +++ b/src/vanna/__init__.py @@ -101,7 +101,7 @@ def login(email: str, otp_code: Union[str, None] = None) -> bool: if not status.success: return False - otp = input("Enter OTP: ") + otp = input("Check your email for the code and enter it here: ") params = [UserOTP(email=email, otp=otp)]