diff --git a/bardapi/chat.py b/bardapi/chat.py index 4fec05979..2ea3854ff 100644 --- a/bardapi/chat.py +++ b/bardapi/chat.py @@ -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}) - diff --git a/bardapi/core_cookies.py b/bardapi/core_cookies.py index 6f882ed52..d8b621c4f 100644 --- a/bardapi/core_cookies.py +++ b/bardapi/core_cookies.py @@ -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