Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: evadb_client fails on launch #1211

Merged
merged 6 commits into from
Sep 25, 2023
Merged
3 changes: 1 addition & 2 deletions evadb/server/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@ async def read_from_client_and_send_to_server(
):
VERSION = VERSION_DICT["VERSION"]
intro = f"evadb (v{VERSION})\nType 'EXIT;' to exit the client \n"
from pprint import pprint

pprint(intro, flush=True)
print(intro, flush=True)

prompt = "evadb=#"

Expand Down