Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
chore: style black
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark committed Jan 19, 2024
1 parent f754a3f commit dfaf05b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion bardapi/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,3 @@ def _add_to_chat_history(self, user_input: str, chatbot_response: str) -> None:
None
"""
self.chat_history.append({"User": user_input, "Chatbot": chatbot_response})

4 changes: 3 additions & 1 deletion bardapi/core_cookies.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ def __init__(
token_from_browser (bool, optional, default = False): Whether to extract the token from browser cookies.
"""
print("The BardCookies class is no longer in use.")
print("Please use the Bard class with the 'cookie_dict' and 'multi_cookies_bool' arguments in the Bard constructor.")
print(
"Please use the Bard class with the 'cookie_dict' and 'multi_cookies_bool' arguments in the Bard constructor."
)
self.cookie_dict = cookie_dict or self._get_token(token_from_browser)
self.proxies = proxies
self.timeout = timeout
Expand Down

0 comments on commit dfaf05b

Please sign in to comment.