Skip to content

Commit

Permalink
Avoid python-multipart warning, closes #36
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Nov 15, 2024
1 parent 2dfabba commit 1715460
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asgi_csrf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from enum import Enum
import fnmatch
from functools import wraps
from multipart import FormParser
from python_multipart import FormParser
import os
from urllib.parse import parse_qsl
from itsdangerous.url_safe import URLSafeSerializer
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ classifiers = [
]
dependencies = [
"itsdangerous",
"python-multipart"
"python-multipart>=0.0.13"
]

[build-system]
Expand Down

0 comments on commit 1715460

Please sign in to comment.