mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
fix(g4f): Fix typo in function name
This commit is contained in:
parent
5c5ce8c0f7
commit
0b2f7898d4
2 changed files with 3 additions and 3 deletions
|
|
@ -25,14 +25,14 @@ def get_version() -> str:
|
|||
pass
|
||||
raise VersionNotFoundError("Version not found")
|
||||
|
||||
def get_lastet_version() -> str:
|
||||
def get_latest_version() -> str:
|
||||
response = get("https://pypi.org/pypi/g4f/json").json()
|
||||
return response["info"]["version"]
|
||||
|
||||
def check_pypi_version() -> None:
|
||||
try:
|
||||
version = get_version()
|
||||
latest_version = get_lastet_version()
|
||||
latest_version = get_latest_version()
|
||||
if version != latest_version:
|
||||
print(f'New pypi version: {latest_version} (current: {version}) | pip install -U g4f')
|
||||
except Exception as e:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue