Skip to content
This repository was archived by the owner on Jun 12, 2024. It is now read-only.

Commit 1f0a14f

Browse files
committed
chore: style black
1 parent a81d3a8 commit 1f0a14f

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

gemini/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
pass
3232

3333

34-
__version__ = "2.4.11"
34+
__version__ = "2.4.12"
3535
__author__ = (
3636
"daniel park <[email protected]>, antonio cheang <[email protected]>, "
3737
"HanaokaYuzu, CBoYXD, veonua, thewh1teagle, jjkoh95, yihong0618, nishantchauhan949, MeemeeLab, kota113, "

gemini/client.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(
6767
target_cookies: List = None,
6868
timeout: int = 30,
6969
proxies: Optional[dict] = None,
70-
verify: bool = True, # Try to use if needed.
70+
verify: bool = True, # Try to use if needed.
7171
) -> None:
7272
"""
7373
Initializes the Gemini object with session, cookies, and other configurations.
@@ -162,9 +162,7 @@ def _set_sid_and_nonce(self):
162162
if sid_match:
163163
self._sid = sid_match.group(1)
164164
else:
165-
print(
166-
"Skip FdrFJe value."
167-
)
165+
print("Skip FdrFJe value.")
168166
if nonce_match:
169167
self._nonce = nonce_match.group(1)
170168
else:

0 commit comments

Comments
 (0)