Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 2940dbf

Browse files
committed
Correct Workzeug version 2.* in requirements.txt
1 parent 37d0916 commit 2940dbf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
app = Flask(__name__)
1616
fake = Faker()
17-
alphanumeric_only = re.compile("[\W_]+")
17+
alphanumeric_only = re.compile(r"[\W_]+")
1818
phone_pattern = re.compile(r"^[\d\+\-\(\) ]+$")
1919

2020
twilio_number = os.environ.get("TWILIO_CALLER_ID")

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ twilio~=6.38.1
33
faker~=4.0.3
44
python-dotenv==0.13.0
55
pytest==5.4.1
6+
Werkzeug >= 2, < 3

0 commit comments

Comments
 (0)