Skip to content

Commit 2883ee7

Browse files
committed
Avoid python-multipart warning, closes #36
1 parent eeb7c48 commit 2883ee7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

asgi_csrf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from enum import Enum
33
import fnmatch
44
from functools import wraps
5-
from multipart import FormParser
5+
from python_multipart import FormParser
66
import os
77
from urllib.parse import parse_qsl
88
from itsdangerous.url_safe import URLSafeSerializer

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ classifiers = [
1111
]
1212
dependencies = [
1313
"itsdangerous",
14-
"python-multipart"
14+
"python-multipart>=0.0.13"
1515
]
1616

1717
[build-system]

0 commit comments

Comments
 (0)