Skip to content

Commit

Permalink
Correct Workzeug version 2.* in requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
pjkundert committed Jul 22, 2024
1 parent 37d0916 commit 2940dbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

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

twilio_number = os.environ.get("TWILIO_CALLER_ID")
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ twilio~=6.38.1
faker~=4.0.3
python-dotenv==0.13.0
pytest==5.4.1
Werkzeug >= 2, < 3

0 comments on commit 2940dbf

Please sign in to comment.