Skip to content

Commit

Permalink
fix: exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
ArslanSaleem committed Dec 9, 2024
1 parent 1c7acb1 commit c07310e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandasai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def load(dataset_path: str, virtualized=False) -> DataFrame:
api_url = os.environ.get("PANDASAI_API_URL", None)
if not api_url or not api_key:
raise PandasAIApiKeyError(
"Set PANDASAI_API_URL and PANDAAI_API_KEY in environment to pull dataset from the remote server"
"Set PANDASAI_API_URL and PANDASAI_API_KEY in environment to pull dataset from the remote server"
)

request_session = get_pandaai_session()
Expand Down

1 comment on commit c07310e

@ArslanSaleem
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Recheck it's resolved

Please sign in to comment.