Update version to 0.6.7a4 and fix formatting and import issues (#1446)

This pull request updates the version to 0.6.7a4 in pyproject.toml and
fixes formatting and import issues.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-02-19 13:39:35 -03:00 committed by GitHub
commit db50757580
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "langflow"
version = "0.6.7a3"
version = "0.6.7a4"
description = "A Python package with a built-in web application"
authors = ["Logspace <contact@logspace.ai>"]
maintainers = [

View file

@ -37,7 +37,7 @@ async def login_to_get_access_token(
response.set_cookie(
"refresh_token_lf",
tokens["refresh_token"],
httponly=auth_settings.REFRESH_TOKEN_HTTPONLY,
httponly=auth_settings.REFRESH_HTTPONLY,
samesite=auth_settings.REFRESH_SAME_SITE,
secure=auth_settings.REFRESH_SECURE,
)