Skip to content

[FSSDK-11362] Import CSRFProtect from a better spot so prisma picks it up #450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/testapp/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
from os import environ

import user_profile_service
from flask import CSRFProtect, Flask, request
from flask import Flask, request
from flask_wtf.csrf import CSRFProtect

from optimizely import logger, optimizely
from optimizely.helpers import enums
Expand Down
3 changes: 2 additions & 1 deletion tests/testapp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Flask==2.2.5
Flask==3.1.0
flask-wtf==1.2.2