Skip to content

Commit

Permalink
feat: improve message on successful push
Browse files Browse the repository at this point in the history
  • Loading branch information
gventuri committed Jan 30, 2025
1 parent 99cd23f commit 0f51409
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandasai/dataframe/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ def push(self):
for _, (name, file, _) in files:
file.close()

print("Your dataset was successfully pushed to the pandabi platform")
print("Your dataset was successfully pushed to the remote server!")
print(f"🔗 URL: https://app.pandabi.ai/datasets/{self.path}")

def pull(self):
api_key = os.environ.get("PANDABI_API_KEY", None)
Expand Down

0 comments on commit 0f51409

Please sign in to comment.