Check_pypi_version now returns value

pull/1248/head
Eikosa 11 months ago committed by GitHub
parent 297a7fa7dd
commit abbf2927ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,8 @@ def check_pypi_version() -> None:
if version != latest_version: if version != latest_version:
print(f'New pypi version: {latest_version} (current: {version}) | pip install -U g4f') print(f'New pypi version: {latest_version} (current: {version}) | pip install -U g4f')
return False
return True
except Exception as e: except Exception as e:
print(f'Failed to check g4f pypi version: {e}') print(f'Failed to check g4f pypi version: {e}')

Loading…
Cancel
Save