Skip to content

Commit

Permalink
Update version to 0.6.7a4 and fix formatting and import issues (#1446)
Browse files Browse the repository at this point in the history
This pull request updates the version to 0.6.7a4 in pyproject.toml and
fixes formatting and import issues.
  • Loading branch information
ogabrielluiz authored Feb 19, 2024
2 parents 88ec5ef + d87bdfd commit db50757
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
maintainers = [
Expand Down
2 changes: 1 addition & 1 deletion src/backend/langflow/api/v1/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit db50757

Please sign in to comment.