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

Commit

Permalink
fix: circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
dsdanielpark committed Jan 23, 2024
1 parent 391a8e3 commit 140a642
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions bardapi/chat.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
import os
import requests
from typing import Optional
from bardapi import Bard, BardCookies
from bardapi import Bard
from colorama import Fore, Back, Style
from bardapi.constants import SEPARATOR_LINE, SESSION_HEADERS
from bardapi.utils import (
extract_bard_cookie,
)

import os
from typing import Optional
import requests
from bardapi import Bard, extract_bard_cookie

SESSION_HEADERS = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3"
}
Expand Down

0 comments on commit 140a642

Please sign in to comment.